@if(Session::has('success'))
{{Session::get('success')}}
@endif
@if(Session::has('error'))
{{Session::get('error')}}
@endif
@can('Create Category')
New Category
@endcan
| # |
Name |
status |
Date |
Action |
@foreach($categories as $category)
| {{$i}} |
{{$category->name}} |
{{$category->status}} |
{{date('M d, Y H:i A',strtotime($category->created_at))}} |
|
@endforeach