2021-06-21 16:21:50 +03:00
|
|
|
@extends('layouts.admin')
|
|
|
|
|
2021-06-27 11:14:01 +03:00
|
|
|
@section('title', trans('payments.payment_made'))
|
2021-06-21 16:21:50 +03:00
|
|
|
|
|
|
|
@section('new_button')
|
2021-06-30 23:53:31 +03:00
|
|
|
<x-transactions.show.top-buttons type="expense" :transaction="$payment" hide-button-share hide-button-email />
|
2021-06-21 16:21:50 +03:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('content')
|
2021-06-24 13:52:49 +03:00
|
|
|
<x-transactions.show.content type="expense" :transaction="$payment" />
|
2021-06-21 16:21:50 +03:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@push('scripts_start')
|
2021-06-24 13:52:49 +03:00
|
|
|
<link rel="stylesheet" href="{{ asset('public/css/print.css?v=' . version('short')) }}" type="text/css">
|
2021-06-23 13:37:02 +03:00
|
|
|
|
2021-06-24 13:52:49 +03:00
|
|
|
<x-transactions.script type="expense" />
|
|
|
|
@endpush
|