@extends('layouts.business.pdf.pdf_layout') @section('pdf_title')
| {{ __('Name') }} | {{ __('Email') }} | {{ __('Phone') }} | {{ __('Type') }} | {{ __('Due Amount') }} | |
|---|---|---|---|---|---|
| {{ $party->name }} | {{ $party->email }} | {{ $party->phone }} | @if ($party->type == 'Retailer'){{ __('Customer') }} | @else{{ $party->type }} | @endif{{ currency_format($party->due, currency: business_currency()) }} |
| {{ __('Total') }} | {{ currency_format($parties->sum('due'), currency: business_currency()) }} |