@extends('layouts.print_layout') @section('title', @$title) @section('print-content')

{{ _trans('common.Invoice') }}

{{ _trans('common.Date') }}: {{ date('F d,Y', strtotime($payment->date)) }}
{{ _trans('common.Invoice No') }}: {{ $payment->invoice_no }}
{{ _trans('common.Invoiced From:') }}
{{ setting('application_name') }}
{{ setting('phone_number') }}
{{ setting('email') }}
{{ setting('address') }}

{{ _trans('common.Transactions') }}

@php $paid_amount = 0; @endphp @forelse($payment->transactions as $item) @empty @endforelse
{{ _trans('landlord.SR No.') }} {{ _trans('landlord.Date') }} {{ _trans('landlord.Account') }} {{ _trans('landlord.Type') }} {{ _trans('landlord.Payment Method') }} {{ _trans('landlord.Amount') }}
{{ $loop->iteration }} {{ $item->date }} {{ @$item->account->name }} {{ $item->type }} {{ $item->payment_method }} {{ priceFormat($item->amount) }}

{{ _trans('common.No Data Available!') }}

{{ _trans('common.Thank You') }}
{{ _trans('common.Notes') }}: {{ Setting('invoice_note') }}



@endsection