@extends('layouts.app') @section('content')
Stock Count Sessions
Back to Stock
Create New Stock Count Session
@csrf
@forelse($counts as $count) @empty @endforelse
ID Date Category User Created Status Actions
{{ $count->sc_id }} {{ $count->sc_date->format('Y-m-d') }} @if($count->sc_select_cat == 'all') All Products @else {{ $count->sc_select_cat }} @endif {{ $count->user->user_fname ?? 'N/A' }} {{ $count->user->user_lname ?? '' }} {{ $count->sc_c_date->format('Y-m-d') }} {{ $count->sc_c_time }} @if($count->isCompleted()) Completed @else Pending @endif @if(!$count->isCompleted()) Edit Count Print
@csrf @method('DELETE')
@else View @endif
No stock count sessions found. Create one to start.
{{ $counts->links() }}
@if(session('success')) @endif @if(session('error')) @endif @endsection