@extends('layouts.admin') @section('title', 'Inventory') @section('content')

Inventory

Export
@foreach($inventory as $item) @endforeach
ID Product Item Code Bot Account Status Created
{{ $item->id }} {{ $item->product->name }} {{ $item->item_code }} {{ $item->bot_account }} {{ $item->status }} {{ $item->created_at }}
@csrf @method('DELETE')
{{ $inventory->links() }}
@endsection