@extends('layouts.partials.master') @section('title', 'Intervalos de Entrega para ' . $method->name) @push('styles') @endpush @section('content') @include('layouts.components.section-title', ['title' => 'Intervalos de Entrega para ' . $method->name]) {{-- filters --}}
@include('layouts.components.alerts')
@if ($method->slug !== 'MBE') Adicionar @endif @if ($shpShippingMethodsIntervals instanceof \Illuminate\Pagination\LengthAwarePaginator) Ver todos @else Paginar @endif @if ($method->slug === 'MBE') Exportar @endif
@include('layouts.components.per-page', ['subject' => $shpShippingMethodsIntervals, 'route' => 'shp_shipping_methods_intervals', 'uuid' => $method->uuid])
@if ($method->slug !== 'MBE') @endif @forelse($shpShippingMethodsIntervals as $interval) @if ($method->slug !== 'MBE') @endif @empty @endforelse
ID País de destino Região de destino Início (Kg) Fim (Kg) PreçoEstado Ações
{{ $interval->id }} {{ $interval->destinationCountry ? $interval->destinationCountry->name : '' }} {{ $interval->destinationRegion ? $interval->destinationRegion->name : '' }} {{ $interval->start_value }} {{ $interval->end_value }} @formatEuro($interval->price) @include('layouts.components.status', ['status' => $interval->status])
@if (!$interval->trashed())
@csrf @method('DELETE')
@else
@csrf
@csrf @method('DELETE')
@endif

{{ __('translations.no_results') }}

@include('layouts.components.pagination', ['subject' => $shpShippingMethodsIntervals]) @include('layouts.components.confirmation-modal') @include('shp_shipping_methods_intervals.import-modal') @endsection @push('scripts') @vite('resources/js/shp_shipping_methods_intervals/form.js') @endpush