@extends('layouts.frontend') @section('content')
@can('logistic_create') @endcan
{{ trans('cruds.logistic.title_singular') }} {{ trans('global.list') }}
@foreach($logistics as $key => $logistic) @endforeach
{{ trans('cruds.logistic.fields.id') }} {{ trans('cruds.logistic.fields.code') }} {{ trans('cruds.logistic.fields.name') }} {{ trans('cruds.logistic.fields.type') }} {{ trans('cruds.logistic.fields.logo_image_path') }}  
{{ $logistic->id ?? '' }} {{ $logistic->code ?? '' }} {{ $logistic->name ?? '' }} {{ App\Models\Logistic::TYPE_RADIO[$logistic->type] ?? '' }} @if($logistic->logo_image_path) @endif @can('logistic_show') {{ trans('global.view') }} @endcan @can('logistic_edit') {{ trans('global.edit') }} @endcan @can('logistic_delete')
@endcan
@endsection @section('scripts') @parent @endsection