dbfdg @extends('layouts.admin') @section('page-title') {{__('Warehouse Stock Details')}} @endsection @push('script-page') @endpush @section('breadcrumb') @endsection @section('action-btn') @endsection @section('content')
@foreach ($warehouse as $warehouses) @if(!empty($warehouses->product)) @endif @endforeach
{{ __('Product') }} {{ __('Quantity') }}
{{ !empty($warehouses->product)? $warehouses->product->name:'' }} {{ $warehouses->quantity }}
@endsection