@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')
{{ __('Sub Category') }}
@if (Gate::check('create sub category')) @endif
@if (Gate::check('edit sub category') || Gate::check('delete sub category')) @endif @foreach ($sub_categories as $sub_category) @if (Gate::check('edit sub category') || Gate::check('delete sub category')) @endif @endforeach
{{ __('Title') }} {{ __('Category') }} {{ __('Created At') }}{{ __('Action') }}
{{ $sub_category->title }} {{ !empty($sub_category->category) ? $sub_category->category->title : '-' }} {{ dateFormat($sub_category->created_at) }} {{ timeFormat($sub_category->created_at) }}
{!! Form::open(['method' => 'DELETE', 'route' => ['sub-category.destroy', encrypt($sub_category->id)]]) !!} @if (Gate::check('edit sub category')) @endif @if (Gate::check('delete sub category')) @endif {!! Form::close() !!}
@endsection