@include('admin.header')
@php
use Illuminate\Support\Facades\Storage;
@endphp
| Srno |
Date & Time |
Image |
Package Name |
Status |
Action |
@if (isset($objs) && count($objs) > 0)
@foreach ($objs as $item)
| {{ $loop->iteration }} |
{{ $item->created_at }} |
@if (isset($item->image))
@else
NA
@endif
|
{{ $item->name }} |
@if($item->status=='active')
Active
@endif
@if($item->status=='block')
De-Active
@endif
|
|
@endforeach
@endif
@include('admin.footer')