@extends('admin.master') @section('title') Sales Commission Report @endsection @section('content')
| S/L | Date | Invoice No | Sales Person | Warehouse/Outlet | Total Amount | Commission ({{ $commission_percentage }}%) |
|---|---|---|---|---|---|---|
| {{ $key + 1 }} | {{ date('d M, Y', strtotime($data->date)) }} | {{ $data->invoice_code }} | {{ $data->first_name }} {{ $data->last_name }} | {{ $data->warehouse_name }} | {{ number_format($data->total_amount, 2) }} | {{ number_format($commission, 2) }} |
| No data available | ||||||
| Grand Total : | {{ number_format($total_sales, 2) }} | {{ number_format($total_commission, 2) }} | ||||