@extends('layouts.horizontal', ['title' => 'Stock Status', 'topbarTitle' => 'Stock Status']) @section('css') @vite(['node_modules/datatables.net-bs5/css/dataTables.bootstrap5.min.css', 'node_modules/datatables.net-responsive-bs5/css/responsive.bootstrap5.min.css', 'node_modules/datatables.net-fixedcolumns-bs5/css/fixedColumns.bootstrap5.min.css', 'node_modules/datatables.net-fixedheader-bs5/css/fixedHeader.bootstrap5.min.css', 'node_modules/datatables.net-buttons-bs5/css/buttons.bootstrap5.min.css', 'node_modules/datatables.net-select-bs5/css/select.bootstrap5.min.css',]) @endsection @section('content')

Store Stock Status

{{ session('user_role') }}
Filter Products
@if(session("ho") == "Yes")
@endif
@if(isset($data[0])) @foreach(array_keys((array) $data[0]) as $column) @endforeach @endif @foreach($data as $store) @foreach((array) $store as $value) @endforeach @endforeach
{{ ucfirst(str_replace('_', ' ', $column)) }}Actions
@if(is_array($value)) {{ json_encode($value) }} @else {{ $value ?? '' }} @endif
@include('modals.product_edit') @include('modals.transfer_note') @endsection @section('scripts') @vite(['resources/js/modals/product_edit.js', 'resources/js/modals/transfer_note.js']) @endsection