@if(Session::has('message'))
{{ Session::get('message') }}
@endif
| # |
|
ID |
Piece Name |
Material |
Jewellery Type |
Date & Time |
Status |
Action |
@if(count($jewellery)>0)
@foreach($jewellery as $key=>$item)
| {{ $key+1 }} |
@if($item->jewellery_images)
@else
@endif
|
{{ $item->id }} |
{{ $item->piece_name }} |
{{ $item->material }} |
{{ $item->jewellery_type }} |
@if($item->updated_at)
{{ date("d/m/Y h:i A",strtotime($item->updated_at))}}
@else
{{ date("d/m/Y h:i A",strtotime($item->created_at))}}
@endif
|
@if($item->status=='0')
Declined
@endif
@if($item->status=='1')
Approved
@endif
|
@include('shared._actions', [
'entity' => 'jewellery',
'id' => $item->id
])
|
@endforeach
@else
No records found! Click here to add a new record.
|
@endif