11 lines
237 B
PHP
11 lines
237 B
PHP
|
@extends('layouts.print')
|
||
|
|
||
|
@section('title', trans_choice('general.payments', 1) . ': ' . $payment->id)
|
||
|
|
||
|
@section('content')
|
||
|
<x-transactions.template.ddefault
|
||
|
type="payment"
|
||
|
:transaction="$payment"
|
||
|
/>
|
||
|
@endsection
|