@extends('layouts.master') @section('content')
Back to Dashboard
Add Price Listing
@csrf
Price Listings
@foreach($listings as $listing) @endforeach
Item Code Description Price List Price Unit Currency Action
{{ $listing->item->code ?? '' }} {{ $listing->item->description ?? '' }} {{ $listing->priceList->name ?? '' }} {{ number_format($listing->price, 2) }} {{ $listing->unit }} {{ $listing->currency->code ?? '' }}
@endsection