@extends('layouts.admin') @section('content')

Cans Inventory

Reset
Current Inventory: {{ $totalCans }} cans available.
@csrf
@foreach ($cans as $can) @endforeach @if ($cans->count() === 0) @endif
Sr.No Full Name No. Of Cans Payment Id Amount Source Date Status Action
{{ $loop->iteration }} {{ $can->user->name }} {{ $can->cans }} {{ $can->payment_id }} {{ $can->amount. ' ' . $can->currency }} {{ $can->source }} {{ $can->created_at->format('d-m-Y h:i:s A') }} {{ $can->payment_status }}
@csrf
status == 'Approved') ? 'disabled' : '' }}>

No Can Request . . . !

{!! $cans->withQueryString()->links('pagination::bootstrap-5') !!}
@endsection