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

Inventory

@if(is_null($branch_id))

Main Branch Inventory

@else

{{$branch_query->city." ".$branch_query->province." Branch"}} Inventory

@endif
Showing
entries
@can('update','inventory') Adjust Inventory @endcan
@if($products_query->count()>0) @if($filters['rows'] != "All")
Showing {{ $products_query->count() }} entries
@endif @endif

Stock History

Showing
entries
@if($inventory_history_query->count()>0) @if($stock_history_filters['stock_history_rows'] != "All")
Showing {{ $inventory_history_query->count() }} entries
@endif @endif @if(is_null($branch_id))

Branch List

Showing
entries
@if($branch_query->count()>0) @if($branch_list_filters['branch_list_rows'] != "All")
Showing {{ $branch_query->count() }} entries
@endif @endif @endif
@endsection @section('page_script') @parent @endsection