@extends('purchase_payments.layout') @section('purchasePayments.content')
@foreach($purchasePayments as $purchasePayment) @endforeach
Purchase Payment Method Amount Balance Actions
{{$purchasePayment?->purchase?->item?->name ?: "(blank)"}} {{$purchasePayment?->payment_method?->name ?: "(blank)"}} {{ $purchasePayment->amount ?: "(blank)" }} {{ $purchasePayment->balance ?: "0" }} @if($purchasePayment->trashed())
@csrf @method('PUT')
@csrf @method('DELETE')
@else {{-- @lang('Show')
--}} @endif
{{-- {{ $purchasePayments->withQueryString()->links() }} --}}
@endsection