| Bank Name: | {{$bank->name}} |
| Alias: | {{$bank->alias}} |
| Print Name: | {{$bank->printName}} |
| Account No: | {{$bank->accountNo}} |
| IFSC Code: | {{$bank->IFSCCode}} |
| Bank Address: | {{$bank->bankAddress}} |
| Remarks: | {{$bank->remarks}} |
| Opening Balance: | {{$bank->openingBal}} |
| Prev Year Bill: | {{$bank->prevYearBill}} |
@if($bank->active==0)
|
{!! Form::open(['action' => ['PumpBanksController@activate', $bank->id], 'method'=>'GET']) !!}
{{Form::hidden('_method', 'ACTIVATE')}}
{{Form::button(' Activate ', array('class'=>'btn btn-success confirmActivate', 'type'=>'submit')) }}
{!! Form::close() !!}
|
@else
|
{!! Form::open(['action' => ['PumpBanksController@deactivate', $bank->id], 'method'=>'GET']) !!}
{{Form::hidden('_method', 'DEACTIVATE')}}
{{Form::button(' Deactivate ', array('class'=>'btn btn-danger confirmDeactivate', 'type'=>'submit')) }}
{!! Form::close() !!}
|
@endif