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
651 B
18 lines
651 B
@extends('layouts.app')
|
|
|
|
@section('title', trans('subscription.delete'))
|
|
|
|
@section('content')
|
|
<h1 class="page-header">
|
|
<div class="pull-right">
|
|
{!! delete_button(['route'=>['subscriptions.destroy',$subscription->id]], trans('app.delete_confirm_button'), ['class'=>'btn btn-danger'], ['subscription_id'=>$subscription->id]) !!}
|
|
</div>
|
|
{{ trans('app.delete_confirm') }}
|
|
{!! link_to_route('subscriptions.show', trans('app.cancel'), [$subscription->id], ['class' => 'btn btn-default']) !!}
|
|
</h1>
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
@include('subscriptions.partials.subscription-show')
|
|
</div>
|
|
</div>
|
|
@endsection
|