@extends('layouts.master') @section('title', 'Products Dashboard') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.sidebar') @include('layouts.header-sub')
@yield('title')

Most Frequently Requested Souvenirs


@php // คำนวณจำนวนเดือนจาก Filter เพื่อหาค่าเฉลี่ย $start = request('start_date') ? \Carbon\Carbon::parse(request('start_date')) : now()->startOfYear(); $end = request('end_date') ? \Carbon\Carbon::parse(request('end_date')) : now(); $monthsDiff = max(1, $start->diffInMonths($end) + 1); @endphp @forelse($topProducts as $index => $product) @empty @endforelse
ลำดับ (No.) ชื่อ (Name) ความถี่การเบิก (ครั้ง) จำนวนที่เบิกสุทธิ (ชิ้น) อัตราเบิกเฉลี่ย (ชิ้น/เดือน)
{{ $index + 1 }} {{ $product->product_name }} {{ $product->request_count ?? 0 }} {{ $product->total_quantity }} {{ number_format($product->total_quantity / $monthsDiff, 2) }}
ไม่พบข้อมูลในช่วงเวลาที่เลือก
@include('layouts.footer') @endsection