@extends('dashboard.app')
@section('content')
Categories List
| Name |
Date |
Description |
image |
Icon |
Action |
@foreach ($caregories as $item)
| {{ $item['name'] }} |
{{ \Carbon\Carbon::parse($item['created_at'])->format('d M') }}
|
{{ $item['description'] }} |
|
|
|
@endforeach
@endsection