@extends('dashboard.app') @section('content')
@if (count($item) == 0)

List Is Empty

@else

Categories List

@foreach ($item as $item) @endforeach
Name Date Description image Icon Action
{{ $item['name'] }} {{ \Carbon\Carbon::parse($item['created_at'])->format('d M') }} {{ $item['description'] }} Restore
@endif @endsection