@extends('layouts.app') @section('content')
Opening and Closing Stock Report
Inventory
Reset
@forelse($shifts as $shift) @empty @endforelse
Shift No User Branch Status Opened Closed Action
{{ $shift->shift_no }} {{ $shift->user?->name ?: '-' }} {{ $shift->branch?->name ?: '-' }} {{ ucfirst($shift->status) }} {{ $shift->opened_at?->format('Y-m-d H:i') }} {{ $shift->closed_at?->format('Y-m-d H:i') ?: '-' }} View Report
No shifts found.
{{ $shifts->links('vendor.pagination.jevapos') }}
@endsection