@php
$searchElements = [
['element' => 'project', 'col' => 1, 'name' => 'projectId', 'attributes' => ['print' => '0']],
['element' => 'branchId', 'col' => 2, 'name' => 'branchId', 'attributes' => ['print_order' => '1']],
['element' => 'custom', 'type' => 'select', 'name' => 'bonusType', 'id' => 'bonusType', 'options' => $data['bonusTypes'], 'label' => 'Bonus Type:', 'col' => 1, 'attributes' => ['print_order' => '3']],
['element' => 'custom', 'type' => 'select', 'name' => 'status', 'id' => 'status', 'options' => ['' => 'All', 'Approved' => 'Approved', 'Not Approved' => 'Not Approved'], 'label' => 'Status:', 'col' => 1, 'attributes' => ['print_order' => '3']],
['element' => 'month', 'col' => 1, 'attributes' => ['print' => '0']],
['element' => 'year', 'col' => 1, 'attributes' => ['print' => '0']]
];
@endphp
@include('partials.searchPanel.main', ['searchElements' => $searchElements, 'buttonLevel' => 'Search'])
| SL# |
Warning: Undefined variable $model in /home/shikkhaplus/public_html/guk_bk/resources/views/hr/bonus/index.blade.php on line 54
Fatal error: Uncaught Error: Call to a member function attributes() on null in /home/shikkhaplus/public_html/guk_bk/resources/views/hr/bonus/index.blade.php:54
Stack trace:
#0 {main}
thrown in /home/shikkhaplus/public_html/guk_bk/resources/views/hr/bonus/index.blade.php on line 54
|