@extends('back.layouts.printable') @push('styles') @endpush @section('content')
موجودی کالاها تاریخ {{ jdate()->format('d-m-Y') }}
@foreach ($products as $product) @foreach ($product->prices as $price) @php if (request()->input('query.stock') == 'available' && $price->stock <= 0) { continue; } @endphp @endforeach @endforeach
{{ $price->id }} {{ $product->title }}
{{ $price->getAttributesName() }}
{{ $price->stock }}
@endsection @push('scripts') @endpush