@section('title') Content Settings @endsection @section('breadcrumbs') {{ Breadcrumbs::render('content-settings.pricing-scheme.show', $pricing->id) }} @endsection

{{ __('View Pricing Scheme') }}

{{ str_replace(' ', '', ucwords(str_replace('_', ' ', $pricing->application_type ?? '-'))) }}
{{ ucwords(str_replace('_', ' ', $pricing->lane ?? '-')) }}
{{ $pricing->processing_lead_time ?? '-' }}
{{ $pricing->maximum ?? '-' }}
{{ $pricing->sst . ' %' ?? '-'}}
{{ $pricing->working_day ?? '-' }}
{{ \Carbon\Carbon::parse($pricing->start_working_hour)->format('h:i A') . ' - ' . \Carbon\Carbon::parse($pricing->end_working_hour)->format('h:i A') ?? '-' }}
@if ($pricing->status == 1) {{ 'Active' }} @else {{ 'Not Active' }} @endif

{{ __('View Pricing in Range') }}

@if ($charge->isNotEmpty())
@foreach ($charge as $item) @endforeach
Range Amount Lane Amount
{{ ($item->min ?? '-') . ' to ' . ($item->max ?? '-') }} {{ $item->amount ?? '-' }} {{ $item->lane_amount ?? '-' }}
@else

{{ 'No range for this lane.' }}

@endif
@section('scripts') @endsection