@extends('layouts.app') @section('title', 'Repair Report') @section('breadcrumb')
{{ $from->format('d M Y') }} — {{ $to->format('d M Y') }}
| Status | Count | Revenue |
|---|---|---|
| {{ ucfirst(str_replace('_',' ',$bs->status)) }} | {{ $bs->count }} | ৳{{ number_format($bs->revenue,0) }} |
| Technician | Tickets | Revenue | Collected |
|---|---|---|---|
| {{ $bt->technician?->name ?? 'Unassigned' }} | {{ $bt->count }} | ৳{{ number_format($bt->revenue,0) }} | ৳{{ number_format($bt->collected,0) }} |
| Ticket | Customer | Device | Technician | Received | Cost | Paid | Status |
|---|---|---|---|---|---|---|---|
| {{ $t->ticket_no }} |
{{ $t->customer->name }}
{{ $t->customer->phone }}
|
{{ $t->device_name }} | {{ $t->technician?->name ?? '—' }} | {{ $t->received_date->format('d M Y') }} | ৳{{ number_format($t->actual_cost,0) }} | ৳{{ number_format($t->paid_amount,0) }} | {{ ucfirst(str_replace('_',' ',$t->status)) }} |
| No repair tickets in this period | |||||||