@extends('layouts.partials.master') @section('title', 'Métodos de Entrega') @push('styles') @endpush @section('content') @include('layouts.components.section-title', ['title' => 'Métodos de Entrega']) {{-- filters --}}
@include('layouts.components.alerts')
@if ($shpShippingMethods instanceof \Illuminate\Pagination\LengthAwarePaginator) Ver todos @else Paginar @endif
@include('layouts.components.per-page', ['subject' => $shpShippingMethods, 'route' => 'shp_shipping_methods'])
@if (count($languages) > 0) @endif @forelse($shpShippingMethods as $method) @if (count($languages) > 0) @endif @empty @endforelse
ID Slug Nome EstadoTraduçõesAções
{{ $method->id }} {{ $method->slug }} {{ $method->name }} @include('layouts.components.status', ['status' => config('shipping.active_shipping_method') === $method->slug ? 'active' : 'inactive']) @include('layouts.components.display-flags', ['context' => $method])

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

@include('layouts.components.pagination', ['subject' => $shpShippingMethods]) @include('layouts.components.confirmation-modal') @endsection