@extends('layouts.admin') @section('content') @can('other_detail_create')
{{ trans('global.add') }} {{ trans('cruds.otherDetail.title_singular') }}
@endcan
{{ trans('cruds.otherDetail.title_singular') }} {{ trans('global.list') }}
@foreach($otherDetails as $key => $otherDetail) @endforeach
{{ trans('cruds.otherDetail.fields.id') }} {{ trans('cruds.otherDetail.fields.name') }} {{ trans('cruds.otherDetail.fields.icon') }} {{ trans('cruds.otherDetail.fields.status') }}  
{{ $otherDetail->id ?? '' }} {{ $otherDetail->name ?? '' }} @if($otherDetail->icon) @endif {{ App\Models\OtherDetail::STATUS_SELECT[$otherDetail->status] ?? '' }} @can('other_detail_show') {{ trans('global.view') }} @endcan @can('other_detail_edit') {{ trans('global.edit') }} @endcan @can('other_detail_delete')
@endcan
@endsection @section('scripts') @parent @endsection