@extends('layouts.admin') @section('title', 'End of Day Report') @section('content')
| Opened By | Opened At | Closed At | Opening Cash | Closing Cash |
|---|---|---|---|---|
| {{ $d->user->name ?? '-' }} | {{ $d->opened_at->format('Y-m-d H:i') }} | {{ $d->closed_at?->format('Y-m-d H:i') ?? '-' }} | Rs {{ number_format($d->opening_cash, 0) }} | {{ $d->closing_cash ? 'Rs ' . number_format($d->closing_cash, 0) : '-' }} |