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.
18 lines
599 B
18 lines
599 B
@extends('layouts.app')
|
|
|
|
@section('title', __('payment.delete'))
|
|
|
|
@section('content')
|
|
<h1 class="page-header">
|
|
<div class="pull-right">
|
|
{!! FormField::delete(['route'=>['payments.destroy',$payment->id]], __('app.delete_confirm_button'), ['class'=>'btn btn-danger'], ['payment_id'=>$payment->id]) !!}
|
|
</div>
|
|
{{ __('app.delete_confirm') }}
|
|
{!! link_to_route('payments.show', __('app.cancel'), [$payment->id], ['class' => 'btn btn-default']) !!}
|
|
</h1>
|
|
<div class="row">
|
|
<div class="col-md-5">
|
|
@include('payments.partials.payment-show')
|
|
</div>
|
|
</div>
|
|
@endsection
|