@extends('layouts.frontend') @section('content')
{{ trans('global.show') }} {{ trans('cruds.logistic.title') }}
{{ trans('cruds.logistic.fields.id') }} {{ $logistic->id }}
{{ trans('cruds.logistic.fields.code') }} {{ $logistic->code }}
{{ trans('cruds.logistic.fields.name') }} {{ $logistic->name }}
{{ trans('cruds.logistic.fields.type') }} {{ App\Models\Logistic::TYPE_RADIO[$logistic->type] ?? '' }}
{{ trans('cruds.logistic.fields.admin_fee') }} {{ $logistic->admin_fee }}
{{ trans('cruds.logistic.fields.fee_type') }} {{ App\Models\Logistic::FEE_TYPE_SELECT[$logistic->fee_type] ?? '' }}
{{ trans('cruds.logistic.fields.logo_image_path') }} @if($logistic->logo_image_path) @endif
{{ trans('cruds.logistic.fields.attributes') }} {{ $logistic->attributes }}
{{ trans('cruds.logistic.fields.merchant') }} @foreach($logistic->merchants as $key => $merchant) {{ $merchant->code }} @endforeach
@endsection