@extends('layouts.app') @section('title', 'დარიცხვა') @section('content')
INVOICE

{{ $invoice->number }}

{{ $tenant->organization->name }}

{{ $invoice->child->name }}

{{ $invoice->description }} · ვადა {{ $invoice->due_on->format('d.m.Y') }}

@foreach($invoice->adjustments as $adj)@endforeach
საწყისი დარიცხვა{{ \App\Support\Money::format($invoice->amount_cents) }}
კორექტირება · {{ $adj->reason }}{{ \App\Support\Money::format($adj->amount_cents) }}
სულ{{ \App\Support\Money::format($invoice->total_cents) }}
გადასახდელი ნაშთი{{ \App\Support\Money::format($invoice->balance_cents) }}

განაწილებული გადახდები

@foreach($invoice->allocations as $a)@endforeach
თარიღიოპერაციის ნომერითანხა
{{ $a->created_at->format('d.m.Y') }}{{ $a->payment->reference }} · {{ $a->reason }}{{ \App\Support\Money::format($a->amount_cents) }}
@if($access->is('owner','finance'))

კორექტირება

@csrf
@endif @endsection