@extends('layouts.admin') @section('content') @can('specification_create')
{{ trans('global.add') }} {{ trans('global.specifications.title_singular') }}
@endcan @if ($message = Session::get('warning'))
{{ $message }}
@endif
{{ trans('global.specifications.title_singular') }} {{ trans('global.list') }}
@foreach($specifications as $key => $specification) @endforeach
No. {{ trans('global.specifications.fields.category') }} {{ trans('global.specifications.fields.name') }} Sidebar Status Action
{{ $key+1}} {{ $specification->category->name_en ?? '' }} @if($specification->name) {{ $specification->name ?? '-' }} @else - @endif {{ $specification->sidebar_on_off == 1 ? 'YES':'NO' }} @can('specification_show') {{ trans('global.view') }} @endcan @can('specification_edit') {{ trans('global.edit') }} @endcan @can('specification_delete')
@endcan
@endsection @section('scripts') @parent @endsection