@extends('layouts.main') @section('content')
| #ID | User | Amount | Date |
|---|---|---|---|
| #{{ $key + 1 }} |
{{ strtoupper(substr($booking->user->first_name ?? 'U',0,1)) }}
{{ $booking->user->first_name ?? '-' }}{{-- Customer --}} |
{{ number_format($booking->fees, 2) }}
|
{{ $booking->created_at->format('d M Y') }}
|
No Earnings FoundNo earnings records available right now. |
|||