Register Account
SN | A/c Name | A/c Number | Bank | Operator | Action |
---|---|---|---|---|---|
{{$i+1}} | {{$bankAccount->account_name}} | {{$bankAccount->account_number}} | {{$bankAccount->bank_name}} | {{\App\Models\Company::where(['id' => $bankAccount->company])->first()->name}} | {!! Form::open(array( 'style' => 'display: inline-block;', 'method' => 'GET', 'route' => ['Edit Account', $bankAccount->id])) !!} {!! Form::submit('Edit', array('class' => 'mb-2 mr-2 btn-icon btn-sm btn-primary')) !!} {!! Form::close() !!} {!! Form::open(array( 'style' => 'display: inline-block;', 'method' => 'POST', 'onsubmit' => "return confirm('".trans("Are sure you want to Delete")."');", 'route' => ['Delete Account', $bankAccount->id])) !!} {!! Form::submit('Delete', array('class' => 'mb-2 mr-2 btn-icon btn-sm btn-danger')) !!} {!! Form::close() !!} |