|
|
|
@ -1,19 +1,22 @@ |
|
|
|
@extends('layouts.app') |
|
|
|
|
|
|
|
@section('title', trans('payment.show')) |
|
|
|
@section('title', trans('payment.detail')) |
|
|
|
|
|
|
|
@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"> |
|
|
|
<div class="col-md-5 col-lg-offset-2"> |
|
|
|
<legend>@lang('payment.detail') <small class="pull-right text-muted">{{ trans('app.type') }} : {{ $payment->type() }}</small></legend> |
|
|
|
@include('payments.partials.payment-show') |
|
|
|
</div> |
|
|
|
<div class="col-md-3 text-center"> |
|
|
|
<legend>@lang('app.action')</legend> |
|
|
|
<p>{!! link_to_route('payments.pdf', trans('payment.print'), [$payment->id], ['class' => 'btn btn-success']) !!}</p> |
|
|
|
<p>{!! link_to_route('payments.edit', trans('payment.edit'), [$payment->id], ['class' => 'btn btn-warning']) !!}</p> |
|
|
|
<p>{!! link_to_route('projects.payments', 'Kembali ke Daftar Pembayaran Project', [$payment->project_id], ['class' => 'btn btn-default']) !!}</p> |
|
|
|
<p>{!! link_to_route('payments.index', 'Lihat Semua Pembayaran', [], ['class' => 'btn btn-default']) !!}</p> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
@endsection |