@include('includes.admin.header')
@include('includes.admin.sidebar')
# |
User |
Expiry Date
|
Banner
|
URL
|
IP
|
Status
|
Action |
@if($banners->count() > 0)
@foreach($banners AS $banner)
|
{{$banner['name']}} |
@if ($banner['expiry_date'] != null)
{{date("d M Y", strtotime($banner['expiry_date']))}}
@else
Not Set
@endif
|
|
{{$banner['url']}} |
{{$banner['ip']}} |
@if ($banner['paypal_id'] == null)
Payment Pending
@elseif ($banner['expiry_date'] > date("Y-m-d"))
Active
@else
Expired
@endif
|
|
@endforeach
@endif
@include('includes.admin.footer')