@extends('layouts.app') @section('page-title') {{ __('Category') }} @endsection @section('breadcrumb')
@endsection @section('card-action-btn') @if (Gate::check('create category')) {{ __('Create Category') }} @endif @endsection @section('content')| {{ __('Title') }} | {{ __('Created At') }} | @if (Gate::check('edit category') || Gate::check('delete category')){{ __('Action') }} | @endif
|---|---|---|
| {{ $category->title }} | {{ dateFormat($category->created_at) }} {{ timeFormat($category->created_at) }} | @if (Gate::check('edit category') || Gate::check('delete category'))@endif |