@extends('layouts.app') @section('content')
Delivery Prices
@csrf
Upload
Import Delivery Prices
Download Sample CSV
@csrf
@foreach($dispatch_details as $details) @endforeach
Location
Outlet
Price
Action
{{$details->location_name}}
{{$details->location_branch}}
GH₵{{$details->location_price}}
Action
Download
Delete
New Pricing
@csrf
Name of Location
*
Price / Amount
*
@if(auth()->user()->role == "Administrator") @foreach($all_branch as $branch)
{{$branch}}
@endforeach @else
{{auth()->user()->branch}}
@endif
Outlet
*
Submit
@foreach($dispatch_details as $prices)
{{@strtoupper($prices->location_name)}}
@csrf
Name of Location
*
Price / Amount
*
{{$prices->location_branch}}
@foreach($all_branch as $branch)
{{$branch}}
@endforeach
Outlet
*
Submit
@endforeach @endsection