@extends('layouts.app') @section('title', 'Shift Details') @section('content')
{{ $shift->shift_number }}
{{ $shift->user->name }}
{{ $shift->clock_in_at->format('M d, Y h:i A') }}
{{ $shift->clock_out_at ? $shift->clock_out_at->format('M d, Y h:i A') : 'Active' }}
{{ $shift->getFormattedDuration() }}
{{ $shift->notes }}
| Sale # | Time | Customer | Payment | Amount |
|---|---|---|---|---|
| {{ $sale->sale_number }} | {{ $sale->created_at->format('h:i A') }} | {{ $sale->customer_name ?? 'Walk-in' }} | {{ $sale->payment_method }} | ${{ number_format($sale->total, 2) }} |
No sales recorded during this shift
@endif