{{-- resources/views/backend/dashboard.blade.php --}} @extends('backend.app') @section('content') @push('css') @endpush @php $today = date('Y-m-d'); $userStart = optional(auth()->user()->created_at)->format('Y-m-d') ?? $today; // ইউজারের অ্যাকাউন্ট তৈরির দিন $endDateUi = request('endDate', $today); @endphp

Hello {{ auth()->user()->first_name.' '.auth()->user()->last_name }}

{{-- Worker লুকাবে --}} @unlessrole('worker')
Current Stocks
{{ number_format($total_stocks ?? 0) }}
as of today
@endunlessrole
@if($isWorker)
📊 View
My Report
Go to Report
Your performance details
@endif
@endsection @push('js') @endpush