diff --git a/app/Providers/ConfigServiceProvider.php b/app/Providers/ConfigServiceProvider.php index a23a061d87..926e9363c4 100644 --- a/app/Providers/ConfigServiceProvider.php +++ b/app/Providers/ConfigServiceProvider.php @@ -170,7 +170,7 @@ class ConfigServiceProvider extends ServiceProvider ], 'Form' => [ 'is_safe' => [ - 'input','select','checkbox','model' + 'input','select','checkbox','model','open' ] ], ], diff --git a/resources/twig/accounts/delete.twig b/resources/twig/accounts/delete.twig index f6ee597cdb..ef7cea4dbb 100644 --- a/resources/twig/accounts/delete.twig +++ b/resources/twig/accounts/delete.twig @@ -1,36 +1,36 @@ {% extends "./layout/default.twig" %} {% block content %} -{!! Breadcrumbs::renderIfExists(Route::getCurrentRoute()->getName(), $account) !!} -{!! Form::open(['class' => 'form-horizontal','id' => 'destroy','url' => route('accounts.destroy',$account->id)]) !!} +{{ Breadcrumbs.renderIfExists(Route.getCurrentRoute().getName(), account) }} +{{ Form.open({'class' : 'form-horizontal','id' : 'destroy','url' : route('accounts.destroy',account.id)}) }}
- Are you sure that you want to delete the {{strtolower($account->accountType->type)}} "{{$account->name}}"? + Are you sure that you want to delete the {{account.accountType.type|lower}} "{{account.name}}"?
- @if($account->transactions()->count() > 0) + {% if account.transactions().count() > 0 %}- {{ucfirst($account->accountType->type)}} "{{{$account->name}}}" still has {{$account->transactions()->count()}} transaction(s) associated to it. These will be deleted as well. + {{account.accountType.type|capitalize}} "{{ account.name }}" still has {{account.transactions().count()}} transaction(s) associated to it. These will be deleted as well.
- @endif - @if($account->piggyBanks()->count() > 0) + {% endif %} + {% if account.piggyBanks().count() > 0 %}- {{ucfirst($account->accountType->type)}} "{{{$account->name}}}" still has {{$account->piggyBanks()->count()}} piggy bank(s) associated to it. These will be deleted as well. + {{account.accountType.type|capitalize}} "{{ account.name }}" still has {{account.piggyBanks().count()}} piggy bank(s) associated to it. These will be deleted as well.
- @endif + {% endif %}