@php
if ($academicstaff == null) {
$academic_staff_id = '';
$academic_staff_name_en = '';
$academic_staff_name_th = '';
} else {
$academic_staff_id = $academicstaff->academic_staff_id;
$academic_staff_name_en = $academicstaff->academic_staff_name_en;
$academic_staff_name_th = $academicstaff->academic_staff_name_th;
}
@endphp
@extends('layouts.master')
@section('title', 'Employment Category Add/Edit')
@section('style')
@endsection
@section('script')
@endsection
@section('content')
@include('layouts.header')
@include('layouts.header-sub')
@include('layouts.footer')
@endsection