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