| # |
{{__('Code')}} |
{{__('Start Date')}} |
{{__('End Date')}} |
{{__('Status')}} |
{{__('Created At')}} |
{{__('Actions')}} |
@foreach($rows as $row)
| {{$row->id}} |
{{$row->code}} |
{{$row->start_at}} |
{{$row->end_at}} |
@if($row->status == 1)
{{__('Active')}}
@else
{{__('Not Active')}}
@endif
|
{{$row->created_at->format('M j, Y')}}
{{$row->created_at->format('g:i A')}}
|
@if(auth()->user()->can('update_coupons') )
@endif
@if(auth()->user()->can('delete_coupons') )
@endif
|
@endforeach
@include('admin.components.advanced-pagination', ['paginator' => $rows])