@extends('layouts.app') @section('title', 'My Shifts') @section('content')

My Shifts

Back to POS
@forelse($shifts as $shift) @empty @endforelse
Shift # Date Clock In Clock Out Duration Sales Count Total Sales Status Actions
{{ $shift->shift_number }} {{ $shift->clock_in_at->format('M d, Y') }} {{ $shift->clock_in_at->format('h:i A') }} {{ $shift->clock_out_at ? $shift->clock_out_at->format('h:i A') : '-' }} {{ $shift->getFormattedDuration() }} {{ $shift->total_sales_count }} ${{ number_format($shift->total_sales, 2) }} {{ ucfirst($shift->status->value) }} View Details

No shift history yet

Clock in to start your first shift

@if($shifts->hasPages())
{{ $shifts->links() }}
@endif
@endsection