@php
$searchElements = [
['element' => 'custom', 'col' => 2, 'type' => 'select', 'name' => 'position', 'id' => 'position', 'options' => $data['positions'], 'label' => 'Position:'],
['element' => 'custom', 'type' => 'text', 'name' => 'employeeId', 'label' => 'Employee Name/ID', 'id' => 'employeeId'],
['element' => 'fiscal_year', 'col' => 1, 'divHidden' => true, 'attributes' => ['print' => '0']],
['element' => 'status',
'options' => [""=> "All", "Active" => "Active", "Inactive" => "Inactive","Pending"=> "Pending", "Previous" => "Previous"],
'col' => 1, 'name' => 'status']
];
@endphp
@include('partials.searchPanel.main', [
'searchElements' => $searchElements,
'buttonLevel' => 'Search',
])
| SL# |
Warning: Undefined variable $model in /home/shikkhaplus/public_html/morning_bird_bk/resources/views/hr/promotion/index.blade.php on line 53
Fatal error: Uncaught Error: Call to a member function attributes() on null in /home/shikkhaplus/public_html/morning_bird_bk/resources/views/hr/promotion/index.blade.php:53
Stack trace:
#0 {main}
thrown in /home/shikkhaplus/public_html/morning_bird_bk/resources/views/hr/promotion/index.blade.php on line 53
|