@extends('layouts.app') {{-- Important Variables --}} @section('title') Employee Payslip @stop @section('top-bar') @include('includes.top-bar') @stop @section('left-sidebar') @include('includes.left-sidebar') @stop @section('content') Employee Payslip {{__('lang.search_criteria')}} @csrf @include('layouts.components.select_field', [ 'col' => 4, 'name' => 'employee_id', 'options' => App\Models\Employee::get(), 'default_option'=> __('lang.select_employee'), 'label' => __('lang.employee'), ]) Select Month @foreach (App\Models\Common::Months() as $key => $month ) {{ $month }} @endforeach Month Select year @foreach (App\Models\Common::years() as $key => $year) {{ $year }} @endforeach Year @stop @push('include-css') @endpush @push('include-js') @endpush