@php use Illuminate\Support\Facades\Session; @endphp @extends('layouts.back-end.app-seller') @section('title', translate('add_Shipping')) @section('content') @php($direction = Session::get('direction'))

{{translate('shipping_method')}}

{{translate('delivery_restriction')}}
{{translate('shipping')}}

{{translate('note').' '.':'}} {{translate('please_make_sure_all_the product`s_delivery_charges_are_up_to_date').'.'}}

{{translate('add_order_wise_shipping')}}
@csrf
{{translate('order_wise_shipping_method')}} {{ $shippingMethods->count() }}
@foreach($shippingMethods as $k=>$method) @endforeach
{{translate('SL')}} {{translate('title')}} {{translate('duration')}} {{translate('cost')}} {{translate('status')}} {{translate('action')}}
{{$shippingMethods->firstItem()+$k}} {{$method['title']}} {{$method['duration']}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $method['cost']), currencyCode: getCurrencyCode(type: 'default'))}}
@csrf
{!! $shippingMethods->links() !!}
@if(count($shippingMethods)==0) @include('layouts.back-end._empty-state',['text'=>'no_data_found'],['image'=>'default']) @endif
{{translate('category_wise_shipping_cost')}}
@csrf @php($serial = 0) @foreach ($allCategoryShippingCost as $key=>$item) @if($item->category) @endif @endforeach
{{translate('SL')}} {{translate('category_name')}} {{translate('cost_per_product')}} {{translate('multiply_with_QTY')}}
{{++$serial}} {{$item->category->name}}
@endsection @push('script') @endpush