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

Expired Ad List

@include('layouts.message')
Expired Ads List
@if(isset($expired_ads) && count($expired_ads)>0) @foreach($expired_ads as $ad) @endforeach @else @endif
Ad Title Member Name Module Image Date Expired At Status Action
{{$ad->title ?? ''}} @if( !isset($ad->post_Status) || $ad->post_Status == 1 ) new @endif @if( $ad->post_Status == 2 ) renew @endif @if( $ad->post_Status == 3 ) upgrade @endif @if( $ad->is_featured ) Featured Ad @endif {{$ad->user->first_name ?? ''}} {{$ad->user->last_name ?? ''}} {{$ad->module->title ?? ''}} @if($ad->module_id == 1) @endif @if($ad->module_id == 2) @endif @if($ad->module_id == 3) @endif {{date('Y-m-d',strtotime($ad->created_at))}} {{date('Y-m-d',strtotime($ad->expiry_date))}} @if( $ad->status == 0 ) Pending @endif @if( $ad->status == 1 ) Approved @endif @if( $ad->status == 2 ) Reject @endif @if( $ad->status == 3 ) Review @endif
No Expired Ads Available!
{!! $expired_ads->links() !!}
@endsection @section('footer-scripts') @stop