@extends('admin.layouts') @section('title', 'Delivery Fee History') @section('header') @endsection @section('content')

Delivery Fee History

@foreach($fee as $fees) @endforeach
S/N DATE PINCODE AMOUNT ACTION
{{$loop->iteration}} {{\Carbon\Carbon::parse($fees->created_at)->format('d-m-y')}} {{$fees->pincode}} {{$fees->amount}}
@endsection @section('footer') @endsection