@extends('admin.layout.master')
@section('title')
Categories
@endsection
@section('content')
Categories
Id |
Image |
Name |
Created At |
Edit |
Delete |
@forelse($categories as $t=>$categoriy)
{{ $t+1 }} |
@if(!empty($categoriy->image))
@else
--
@endif
|
{{ $categoriy->name }} |
{{ Carbon\Carbon::parse($categoriy->created_at)->format('d-m-Y') }} |
|
|
{{-- update modal--}}
@empty
@endforelse
@endsection
@section('script')
@endsection