@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
@php
$breadcrumb = getCurrentMenuBreadcrumb();
@endphp
@if(!empty($breadcrumb))
@endif
@if(isset($data[0]))
@foreach(array_keys((array) $data[0]) as $column)
| {{ ucfirst(str_replace('_', ' ', $column)) }} |
@endforeach
@endif
Actions |
@foreach($data as $store)
@foreach((array) $store as $value)
|
@if(is_array($value))
{{ json_encode($value) }}
@else
{{ $value ?? '' }}
@endif
|
@endforeach
|
@endforeach
@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