@extends('backend.layout.master') @section('title') Stocks @endsection @section('content')

Available Items

@forelse ($availables as $item) @empty @endforelse
Id Product Name Category Old Price Currnt Price Image Stock
{{ $item->id }} {{ $item->name }} {{ $item->category->name }} {{ $item->old_price }} {{ $item->current_price }} {{ $item->stock }}
No available items
{{ $availables->links('pagination::bootstrap-4') }}

Available Items

@forelse ($outStock as $out) @empty @endforelse
Id Product Name Category Old Price Currnt Price Image Stock
{{ $out->id }} {{ $out->name }} {{ $out->category->name }} {{ $out->old_price }} {{ $out->current_price }} {{ $out->stock }}
No unavailable item
{{ $outStock->links('pagination::bootstrap-4') }}
@endsection