mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-05 21:53:08 -06:00
39 lines
994 B
PHP
39 lines
994 B
PHP
@extends('layouts.default')
|
|
@section('content')
|
|
<div class="row">
|
|
<div class="col-lg-12 col-md-12 col-sm-12">
|
|
<h1>Firefly
|
|
<small>Delete transaction</small>
|
|
</h1>
|
|
<p class="lead">Remember that deleting something is permanent.</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{Form::open(['class' => 'form-horizontal','url' => route('transactions.destroy',$journal->id)])}}
|
|
|
|
<div class="row">
|
|
<div class="col-lg-6">
|
|
<p class="text-info">
|
|
This form allows you to delete the transaction labelled "{{{$journal->description}}}".
|
|
</p>
|
|
<p class="text-danger">
|
|
Are you sure?
|
|
</p>
|
|
|
|
<div class="form-group">
|
|
<div class="col-sm-8">
|
|
<input type="submit" name="submit" value="Delete transaction" class="btn btn-danger" />
|
|
<a href="{{route('transactions.index')}}" class="btn-default btn">Cancel</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
{{Form::close()}}
|
|
|
|
@stop
|