@extends('layouts.layout') @section('title', 'Jewellery') @section('content')

Jewellery List

@if(Session::has('message')) @endif @if(count($jewellery)>0) @foreach($jewellery as $key=>$item) @endforeach @else @endif
# ID Piece Name Material Jewellery Type Date & Time Status Action
{{ $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 ])

No records found!

Click here to add a new record.
@endsection