@extends('header.header') @section('content')
{{__('All Delivery Price')}}

{{__('Delivery Price table')}}

@foreach($prices as $key=> $location) @php $storeName = \App\Models\Stores::find($location->store_id); @endphp @endforeach
#ID {{__('Store Id')}} {{__('Price')}} {{__('from_km')}} {{__('to_km')}} {{__('Control')}}
{{$location->id}} {{$storeName->lang->translate_title}} {{$location->price >=0 ? $location->price . "JOD" : null}} {{$location->from_km}} {{$location->to_km}}
id)}}" method="post" id="delete{{$location->id}}" style="display: none" data-swal-title="Delete Location" data-swal-text="Are Your Sure To Delete This Location ?" data-yes="Yes" data-no="No" data-success-msg="the location has been deleted succssfully">@csrf @method("delete")
{{$prices->links()}}
@endsection @section("scripts") @endsection