@extends('frontend.layout.app') @section('seo_title'){{ $pricing_page_item->title }}@endsection @section('seo_meta_description'){{ $pricing_page_item->meta_description }}@endsection @section('main_content')

{{ $pricing_page_item->heading }}

@foreach($packages as $item)

{{ $item->package_name }}

${{ $item->package_price }}

({{ $item->package_display_time }})


  • @php if($item->total_allowed_jobs == 0) { $text = "No"; $icon_code = "fas fa-times"; } else { $text = $item->total_allowed_jobs; $icon_code = "fas fa-check"; } @endphp {{ $text }} Job Post Allowed
  • @php if($item->total_allowed_featured_jobs == 0) { $text = "No"; $icon_code = "fas fa-times"; } else { $text = $item->total_allowed_featured_jobs; $icon_code = "fas fa-check"; } @endphp {{ $text }} Featured Job
  • @php if($item->total_allowed_photos == 0) { $text = "No"; $icon_code = "fas fa-times"; } else { $text = $item->total_allowed_photos; $icon_code = "fas fa-check"; } @endphp {{ $text }} Company Photos
  • @php if($item->total_allowed_videos == 0) { $text = "No"; $icon_code = "fas fa-times"; } else { $text = $item->total_allowed_videos; $icon_code = "fas fa-check"; } @endphp {{ $text }} Company Videos
@endforeach
@endsection