@extends('backend.layouts.app-backend') @section('content')

Business Ads Details

@include('layouts.message')
{{$ad->title}}
@if( isset( $_GET['order_id'] ) )
@if( $ad->status == 0 || $ad->status == 3 ) Approve Reject @endif @if( $ad->status == 1 ) Reject @endif @if( $ad->status == 2 ) Approve @endif
@endif
1. Ad Details
@if(isset($ad->title)) @endif @if(isset($ad->overview_description)) @endif @if(isset($ad->category->title)) @endif @if(isset($ad->job_type)) @php $jobType = \App\Models\JobType::find( $ad->job_type ); @endphp @endif @if(isset($ad->created_at)) @endif @if(isset($ad->approved_at)) @endif @if(isset($ad->rejected_date)) @endif @if(isset($ad->expiry_date)) @endif @if(isset($ad->renew_date)) @endif @if(isset($ad->featured_expired)) @endif
Ad Title {{$ad->title}}
Overview Description {!!$ad->overview_description!!}
Category {{$ad->category->title}}
Job Type {{$jobType->title}}
Ad Post Date {{date('F d, Y',strtotime($ad->created_at))}}
Approved At {{date('F d, Y',strtotime($ad->approved_at))}}
Rejected at {{date('F d, Y',strtotime($ad->rejected_date))}}
Expiry at {{date('F d, Y',strtotime($ad->expiry_date))}}
Recent Renew Date {{date('F d, Y',strtotime($ad->renew_date))}}
Featured Expiry Date {{date('F d, Y',strtotime($ad->featured_expired))}}
2. Contact Info
@if(isset($ad->email)) @endif @if(isset($ad->phone)) @endif
Email {{$ad->email}}
Phone {{$ad->phone}}
3. Social Links
@if(isset($ad->facebook_url)) @endif @if(isset($ad->twitter_url)) @endif @if(isset($ad->pinterest_url)) @endif @if(isset($ad->instagram_url)) @endif
Facebook Link {{$ad->facebook_url}}
Twitter Link {{$ad->twitter_url}}
Pinterest Link {{$ad->pinterest_url}}
Instagram Link {{$ad->instagram_url}}
4. Others
@if(isset($ad->featured_image)) @endif
Featured Image
5. Promote Your Ad
@if(isset($ad->setting->title)) @endif @if(isset($ad->promote_ad_type_duration)) @endif @if(isset($ad->promote_ad_type_price)) @endif
Features {{$ad->setting->title}}
Duration {{$ad->promote_ad_type_duration}} Days
Price ${{$ad->promote_ad_type_price}}
@if($ad->reject_reason)
Reject Reason
{!!$ad->reject_reason!!}
@endif
@endsection