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

Remember that deleting something is permanent.

{{Form::open(['class' => 'form-horizontal','url' => route('accounts.destroy',$account->id)])}}
@if($account->transactions()->count() > 0)

Account "{{{$account->name}}}" still has {{$account->transactions()->count()}} transaction(s) associated to it. These will be deleted as well.

@endif

Press "Delete permanently" If you are sure you want to delete "{{{$account->name}}}".

@if($account->accountType->type == 'Asset account' || $account->accountType->type == 'Default account') Cancel @endif @if($account->accountType->type == 'Expense account' || $account->accountType->type == 'Beneficiary account') Cancel @endif @if($account->accountType->type == 'Revenue account') Cancel @endif
{{Form::close()}} @stop