@extends('layouts.default') @section('content') {!! Breadcrumbs::renderIfExists(Route::getCurrentRoute()->getName(), $bill) !!} {!! Form::open(['class' => 'form-horizontal','id' => 'destroy','url' => route('bills.destroy',$bill->id)]) !!}
Delete bill "{{{$bill->name}}}"

Are you sure that you want to delete bill "{{{$bill->name}}}"?

@if($bill->transactionjournals()->count() > 0)

Bill "{{{$bill->name}}}" still has {{$bill->transactionjournals()->count()}} transactions connected to it. These will not be removed but will lose their connection to this bill.

@endif

Cancel

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