@extends('layouts.app') @section('content')
Category Management
@can('update-category', auth()->user()) Add Category @endcan
@include('components.alert')
@foreach ($categories as $category) @endforeach
Name Description Creation Date Action
{{ $category->name }} {{ $category->description }} {{ $category->created_at }} @can('update-category', auth()->user())
@csrf
@endcan
@include('layouts.footers.auth.footer')
@endsection @push('js') @endpush