@extends('layouts.app') @section('title', 'Commissions') @section('page-title', 'Commission Tracking') @section('content')
Manage commissions from online bookings.
| Date | Hotel | Guest | Booking Ref | Total | Rate | Commission | Status | |
|---|---|---|---|---|---|---|---|---|
| {{ $c->created_at->format('d M Y') }} | {{ $c->hotel->name }} | {{ $c->guest->first_name }} {{ $c->guest->last_name }} | {{ $c->booking_reference }} | ₦{{ number_format($c->invoice->total ?? 0, 2) }} | {{ $c->commission_rate }}% | ₦{{ number_format($c->commission_amount, 2) }} | @if($c->commission_paid) Paid @else Pending @endif | @if(!$c->commission_paid)Mark Paid@endif |