first commit

This commit is contained in:
Sampanna Rimal
2024-08-27 17:48:06 +05:45
commit 53c0140f58
10839 changed files with 1125847 additions and 0 deletions

View File

@ -0,0 +1,57 @@
<div class="row gy-3">
<div class="col-lg-4 col-md-6">
{{ html()->label('Job Post')->class('form-label') }}
{{ html()->select('job_post_id', $jobPostLists)->class('form-select select2')->placeholder('Schedule For') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Schedule Date')->class('form-label') }}
<div class="input-group">
{{ html()->date('scheduled_date')->class('form-control flatpickr-date') }}
<span class="input-group-text"><i class="ri-calendar-line"></i></span>
</div>
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Schedule Time')->class('form-label') }}
<div class="input-group">
{{ html()->text('scheduled_time')->class('form-control')->attributes(['data-provider' => 'timepickr', 'data-time-basic' => 'true']) }}
<span class="input-group-text"><i class="ri-time-line"></i></span>
</div>
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Interview Mode')->class('form-label') }}
{{ html()->select('interview_mode', ['online' => 'Online', 'physical' => 'Physical'])->class('form-select select2')->placeholder('Interview Mode') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Arranged by')->class('form-label') }}
{{ html()->select('arranged_by', $employeeLists)->class('form-select select2')->placeholder('Arranged By') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Arranged Date')->class('form-label') }}
<div class="input-group">
{{ html()->date('arranged_date')->class('form-control flatpickr-date') }}
<span class="input-group-text"><i class="ri-calendar-line"></i></span>
</div>
</div>
<div class="col-lg-12 col-md-12">
{{ html()->label('Interviewer')->class('form-label') }}
{{ html()->multiselect('interviewer_choices[]', $employeeLists)->placeholder('Pick Interviewer')->class('form-control select2')->value($task->interview_choices ?? null)->attributes(['multiple'])->required() }}
</div>
<div class="col-lg-12 col-md-12">
{{ html()->label('Description')->class('form-label') }}
{{ html()->textarea('description')->class('form-control ckeditor-classic') }}
</div>
<x-form-buttons :editable="$editable" label="Add" href="{{ route('interviewSchedule.index') }}" />
</div>
@push('js')
<script src="{{ asset('assets/js/pages/form-validation.init.js') }}"></script>
@endpush

View File

@ -0,0 +1,79 @@
<div class="row gy-3">
<div class="col-lg-4 col-md-6">
{{ html()->label('Job Post')->class('form-label') }}
{{ html()->select('job_post_id', $jobPostLists)->class('form-select select2')->placeholder('Apply For') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Name')->class('form-label') }}
{{ html()->text('name')->class('form-control')->placeholder('Full Name')->required() }}
{{ html()->div('Please enter Name')->class('invalid-feedback') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Email')->class('form-label') }}
{{ html()->text('email')->class('form-control')->placeholder('Email Address')->required() }}
{{ html()->div('Please enter email address')->class('invalid-feedback') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Gender')->class('form-label') }}
{{ html()->select('gender', $genderLists)->class('form-control select2')->placeholder('Gender') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Address')->class('form-label') }}
{{ html()->text('address')->class('form-control')->placeholder('Full Address')->required() }}
{{ html()->div('Please enter address')->class('invalid-feedback') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Contact')->class('form-label') }}
{{ html()->text('phone')->class('form-control')->placeholder('Contact Number')->required() }}
{{ html()->div('Please enter contact number')->class('invalid-feedback') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Working Experience')->class('form-label') }}
{{ html()->text('working_experience')->class('form-control')->placeholder('Working Experience') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Previous Company Name (If any)')->class('form-label') }}
{{ html()->text('prev_company')->class('form-control')->placeholder('Previous Company Name') }}
{{ html()->div('Please enter email')->class('invalid-feedback') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Apply Date')->class('form-label') }}
{{ html()->text('apply_date')->class('form-control flatpickr-date')->placeholder('Apply Date')->required() }}
{{ html()->div('Please enter apply date')->class('invalid-feedback') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Recommended By (If any)')->class('form-label') }}
{{ html()->text('recommended_by')->class('form-control')->placeholder('Recommended By') }}
</div>
<div class="col-lg-12 col-md-12">
{{ html()->label('Description')->class('form-label') }}
{{ html()->textarea('description')->class('form-control ckeditor-classic') }}
</div>
<x-form-buttons :editable="$editable" label="Add" href="{{route('jobApplication.index')}}" />
</div>
@push('js')
<script src="{{ asset('assets/js/pages/form-validation.init.js') }}"></script>
@endpush

View File

@ -0,0 +1,58 @@
<div class="row gy-2">
<div class="col-lg-4 col-md-6">
{{ html()->label('For Department')->class('form-label') }}
{{ html()->select('department_id', $departmentLists)->class('form-select select2')->placeholder('Department')->required() }}
{{ html()->div('Please select department')->class('invalid-feedback') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('For Designation')->class('form-label') }}
{{ html()->select('designation_id', $designationLists)->class('form-select select2')->placeholder('Designation')->required() }}
{{ html()->div('Please select designation')->class('invalid-feedback') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Title')->class('form-label') }}
{{ html()->text('title')->class('form-control')->placeholder('Enter Title')->required() }}
{{ html()->div('Please fill title')->class('invalid-feedback') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Vacancy Number')->class('form-label') }}
{{ html()->number('vacancy_no')->class('form-control')->placeholder('Job Vacancy Number')->required() }}
{{ html()->div('Please add vacancy number')->class('invalid-feedback') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Post Date')->class('form-label') }}
<div class="input-group">
{{ html()->text('post_date')->class('form-control flatpickr-date')->placeholder('Job Post Date') }}
<span class="input-group-text"><i class="ri-time-line"></i></span>
</div>
{{ html()->div('Please add post date')->class('invalid-feedback') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Expiry Date')->class('form-label') }}
<div class="input-group">
{{ html()->text('expiry_date')->class('form-control flatpickr-date')->placeholder('Expiry Date') }}
<span class="input-group-text"><i class="ri-time-line"></i></span>
</div>
{{ html()->div('Please add expiry date')->class('invalid-feedback') }}
</div>
<div class="col-lg-12 col-md-12">
{{ html()->label('Description')->class('form-label') }}
{{ html()->textarea('description')->class('form-control ckeditor-classic')->attributes(['rows' => 3]) }}
</div>
<x-form-buttons :editable='$editable' label='Add' href="{{ route('jobPost.index') }}" />
</div>
@push('js')
<script src="{{ asset('assets/js/pages/form-validation.init.js') }}"></script>
@endpush

View File

@ -0,0 +1,66 @@
<div class="row gy-3">
<div class="col-lg-4 col-md-6">
{{ html()->label('From Post')->class('form-label') }}
{{ html()->select('job_post_id', $jobPostLists)->class('form-select select2')->placeholder('Job Post') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('For Applicant')->class('form-label') }}
{{ html()->select('job_application_id', $jobApplicationLists)->class('form-select select2')->placeholder('Applicant') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('For Department')->class('form-label') }}
{{ html()->select('department_id', $departmentLists)->class('form-select select2')->placeholder('Department') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('For Designation')->class('form-label') }}
{{ html()->select('designation_id', $designationLists)->class('form-select select2')->placeholder('Designation') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Working Shift')->class('form-label') }}
{{ html()->select('work_shift_id', $workShiftLists)->class('form-select select2')->placeholder('Working Shift') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Applicant Name')->class('form-label') }}
{{ html()->text('applicant_name')->class('form-control')->placeholder('Full Name') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Offered Salary')->class('form-label') }}
{{ html()->number('salary')->class('form-control')->placeholder('Offered Salary') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Joining Date')->class('form-label') }}
<div class="input-group">
{{ html()->text('joining_date')->class('form-control flatpickr-date') }}
<span class="input-group-text"><i class="ri-calendar-event-line"></i></span>
</div>
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Issued Date')->class('form-label') }}
<div class="input-group">
{{ html()->text('issued_date')->class('form-control flatpickr-date') }}
<span class="input-group-text"><i class="ri-calendar-event-line"></i></span>
</div>
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Issued By')->class('form-label') }}
{{ html()->select('issued_by', $employeeLists)->class('form-select select2')->placeholder('Issued By') }}
</div>
<div class="col-lg-12 col-md-12">
{{ html()->label('Description')->class('form-label') }}
{{ html()->textarea('description')->class('form-control ckeditor-classic') }}
</div>
<x-form-buttons :editable='$editable' label="Add" href="{{ route('offerLetter.index') }}" />
</div>