@extends('layouts.front') @section('css') @endsection @section('content')
@include('includes.rider.sidebar')

@lang('Service Area')

@lang('Add New Service Area')
@php $orders = App\Models\Order::where('user_id', Auth::user()->id) ->latest() ->paginate(12); @endphp @forelse($service_area as $area) @empty @endforelse
{{ __('Service Area') }} {{ __('Delivery Cost') }} {{ __('Action') }}
{{ $area->city->city_name }}

{{ $curr->sign }}{{ round($area->price * $curr->value, 2) }}

{{ __('No Orders Found.') }}
{{ $orders->links('includes.frontend.pagination') }}
@endsection @section('script') @endsection