@extends('layouts.admin') @section('content')
{{ __('Product List') }}
@can('product_create') @endcan

@forelse ($data as $d) @empty @endforelse
ID Name Description Price  
{{$d->id}} {{$d->name}} {{$d->description}} $. {{number_format($d->price, 2)}} @can('product_show') Show @endcan Edit
No Products Found
@endsection