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

Remember that deleting something is permanent.

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

Account "{{{$category->name}}}" still has {{$category->transactionjournals()->count()}} transaction(s) associated to it. These will NOT be deleted but will lose their connection to the category.

@endif

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

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