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