@extends('layouts.admin') @section('content')

Change Delivery Fee

@csrf

Delivery Fees

@foreach($deliveryFees as $fee) @endforeach
Delivery Fee
Status
Actions
{{ $fee->delivery_fee }}
@if($fee->is_active == 1)
Active
{{ $fee->created_at->format('F j, Y h:i A') }} @else
Inactive
{{ $fee->updated_at->format('F j, Y h:i A') }} @endif
@csrf @method('DELETE')
@endsection