@extends('layouts.app') @section('title', 'সিলিন্ডার তালিকা') @section('page-title', 'সিলিন্ডার ইনভেন্টরি') @section('content') {{-- Quick Nav --}}
স্টক সারসংক্ষেপ লাইভ ট্র্যাকিং সিলিন্ডার যোগ
{{-- Stats --}}
@foreach([ ['label'=>'মোট','value'=>$stats['total'],'color'=>'primary','icon'=>'fire'], ['label'=>'ভর্তি','value'=>$stats['full'],'color'=>'success','icon'=>'check-circle-fill'], ['label'=>'খালি','value'=>$stats['empty'],'color'=>'secondary','icon'=>'circle'], ['label'=>'পরিবহনে','value'=>$stats['in_transit'],'color'=>'warning','icon'=>'truck'], ['label'=>'ক্ষতিগ্রস্ত','value'=>$stats['damaged'],'color'=>'danger','icon'=>'x-circle-fill'], ['label'=>'গ্রাহকে','value'=>$stats['with_customer'],'color'=>'info','icon'=>'person-check-fill'], ] as $s)
{{ $s['value'] }}
{{ $s['label'] }}
@endforeach
{{-- Filters --}}
{{-- Table --}}
@forelse($cylinders as $cylinder) @empty @endforelse
#ID সিরিয়াল নম্বর টাইপ স্ট্যাটাস অবস্থান ধারক একশন
#{{ $cylinder->id }} {{ $cylinder->serial_number ?? '—' }} {{ $cylinder->cylinderType->name }} {{ $cylinder->status_label }} @if($cylinder->holder_type === 'warehouse') গুদাম @elseif($cylinder->holder_type === 'customer') গ্রাহক @else ডেলিভারি @endif {{ $cylinder->holder_name }}
কোনো সিলিন্ডার পাওয়া যায়নি।
@if($cylinders->hasPages()) @endif
@endsection