You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
584 B
19 lines
584 B
@extends('layouts.app')
|
|
|
|
@section('title', trans('payment.show'))
|
|
|
|
@section('content')
|
|
@include('payments.partials.breadcrumb')
|
|
<h1 class="page-header">
|
|
<div class="pull-right">
|
|
{!! link_to_route('payments.pdf', trans('payment.print'), [$payment->id], ['class' => 'btn btn-success']) !!}
|
|
{!! link_to_route('payments.index', 'Lihat Semua Pembayaran', [], ['class' => 'btn btn-default']) !!}
|
|
</div>
|
|
{{ trans('payment.show') }}
|
|
</h1>
|
|
<div class="row">
|
|
<div class="col-md-5">
|
|
@include('payments.partials.payment-show')
|
|
</div>
|
|
</div>
|
|
@endsection
|