@extends('layout') @section('h4-page', __($type ?? 'shippingDeliveryType')) @section('contents')
@if (session('success')) @endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if($type == 'shippingUrgencyLevel') @else @endif @forelse (@$main as $key => $item) @empty @endforelse
# {{__("Name")}}{{__("Percent")}}{{__("price")}}{{__("Action")}}
{{ $main->currentPage() > 1 ? $main->perPage() * $main->currentPage() - $main->perPage() + $key + 1 : $key + 1 }} {{ $item->name }} {{ $item->price }}
{{__("NoDataFound")}}
{{ @$main->links('pagination::bootstrap-5') }}
@endsection @section('scripts') @endsection