@extends('layouts.default') @section('content')

Remember that deleting something is permanent.

{{Form::open(['class' => 'form-horizontal','url' => route('budgets.limits.destroy',$limit->id)])}}

 

This form allows you to delete the envelope for budget {{{$limit->budget->name}}}, with a content of {{mf($limit->amount,false)}} @if($limit->repeats == 0) in {{$limit->limitrepetitions[0]->startdate->format('M Y')}} ({{$limit->repeat_freq}}). @endif

Destroying an envelope does not remove any transactions from the budget.

Are you sure?

@if(Input::get('from') == 'date') Cancel @else Cancel @endif
@if($limit->repeats == 1)

Auto repeating

This envelope is set to repeat itself; creating a new period whenever the previous period has passed. If you change this envelope, you'll also change the following (automatically created) envelopes. {{$limit->limitrepetitions()->count() }}

@endif
{{Form::close()}} @stop