@extends('layouts.layout-horizontal') @section('title', 'Product Price Lists') @section('css') @endsection @section('content')
Vendor Price Lists
Back to Products
@if(session('success')) @endif
@csrf
@if($productId || $vendorId) Clear @endif
@forelse($priceLists as $row) @php $rate = (float) $row->rate; @endphp @empty @endforelse
Product Vendor Rate Effective Remarks Action
{{ $row->product?->name }}
{{ $row->product?->product_id }} @if($row->product?->hsn) HSN: {{ $row->product->hsn }} @endif
{{ $row->vendor?->name }} {{ indian_number($rate, 2) }} {{ $row->effective_from ? $row->effective_from->format('d-M-Y') : '-' }} {{ $row->remarks ?: '-' }}
@csrf @method('DELETE')
No price list rates found.
{{ $priceLists->links() }}
@endsection @section('scripts') @endsection