@extends('admin.layout.master') @section('title', 'Item Manager') @section('content')

Item List

@forelse ($data as $key=>$value) @empty @endforelse
# Name Category Sub Category Status Featured Created At Action
{{ $key + 1 }} {{ $value->name }} {{ ($value->category)?$value->category->name:''}} {{ ($value->subCategory)?$value->subCategory->name:'' }} {{ date('M d, Y', strtotime($value->created_at)) }} View Edit Delete
No record found...
@endsection @push('js') @endpush