@extends('master.app') @section('title', 'customer') @section('body') Filter By any Attribute @method('get') Choose Category @foreach ($p_category as $row) {{ $row->title_ps }} @endforeach @error('p_category_id') {{ $message }} @enderror Choose Unit Type @foreach ($units as $row) {{ $row->title_ps }} @endforeach @error('unit_type_id') {{ $message }} @enderror Choose Wieight @foreach ($weights as $row) {{ $row->title_ps }} @endforeach @error('wieight_id') {{ $message }} @enderror QTY Cost Price Sale price Filter Your Critira # Cat Sub/Cat Unit Weight QTY CPI SPI Actions @foreach ($stock as $row) {{ $loop->iteration }} {{ $row->cats->title_ps }} {{ $row->sub_cats->title_ps }} {{ $row->unit_category->title_ps }} {{ $row->unit_wieght->title_ps }} {{ $row->quantity }} {{ $row->cost_per_qty }} {{ $row->sale_price_per_qty }} @endforeach {{ csrf_field() }} {{ method_field('DELETE') }} {{ $stock->links('pagination::bootstrap-4') }} @endsection @section('pageJs') @endsection