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.
22 lines
1019 B
22 lines
1019 B
@extends('layouts.app')
|
|
|
|
@section('title', __('payment.detail'))
|
|
|
|
@section('content')
|
|
|
|
@include('payments.partials.breadcrumb')
|
|
|
|
<div class="row">
|
|
<div class="col-md-5 col-lg-offset-2">
|
|
<legend>{{ __('payment.detail') }} <small class="pull-right text-muted">{{ __('app.type') }} : {{ $payment->type() }}</small></legend>
|
|
@include('payments.partials.payment-show')
|
|
</div>
|
|
<div class="col-md-3 text-center">
|
|
<legend>{{ __('app.action') }}</legend>
|
|
<p>{!! link_to_route('payments.pdf', __('payment.print'), [$payment->id], ['class' => 'btn btn-success']) !!}</p>
|
|
<p>{!! link_to_route('payments.edit', __('payment.edit'), [$payment->id], ['class' => 'btn btn-warning']) !!}</p>
|
|
<p>{!! link_to_route('projects.payments', __('project.view_payments'), [$payment->project_id], ['class' => 'btn btn-default']) !!}</p>
|
|
<p>{!! link_to_route('payments.index', __('payment.back_to_index'), [], ['class' => 'btn btn-default']) !!}</p>
|
|
</div>
|
|
</div>
|
|
@endsection
|