Compare commits
3 Commits
efe174e3b3
...
e9c62209d4
Author | SHA1 | Date | |
---|---|---|---|
e9c62209d4 | |||
158765a250 | |||
6ae0143005 |
114
Modules/Admin/app/Http/Controllers/CompanyController.php
Normal file
114
Modules/Admin/app/Http/Controllers/CompanyController.php
Normal file
@ -0,0 +1,114 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Admin\Http\Controllers;
|
||||||
|
|
||||||
|
use App\Http\Controllers\Controller;
|
||||||
|
use Illuminate\Http\RedirectResponse;
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
use Illuminate\Http\Response;
|
||||||
|
use Modules\Admin\Repositories\CompanyRepository;
|
||||||
|
use Modules\Admin\Services\AdminService;
|
||||||
|
|
||||||
|
class CompanyController extends Controller
|
||||||
|
{
|
||||||
|
private $companyRepository;
|
||||||
|
private $adminService;
|
||||||
|
|
||||||
|
public function __construct(CompanyRepository $companyRepository, AdminService $adminService)
|
||||||
|
{
|
||||||
|
$this->companyRepository = $companyRepository;
|
||||||
|
$this->adminService = $adminService;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Display a listing of the resource.
|
||||||
|
*/
|
||||||
|
public function index()
|
||||||
|
{
|
||||||
|
$data['title'] = 'Company Lists';
|
||||||
|
$data['companyLists'] = $this->companyRepository->findAll();
|
||||||
|
return view('admin::companies.index', $data);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show the form for creating a new resource.
|
||||||
|
*/
|
||||||
|
public function create()
|
||||||
|
{
|
||||||
|
$data['title'] = 'Create Companys';
|
||||||
|
$data['editable'] = false;
|
||||||
|
$data['companyTypeLists'] = $this->adminService->pluckCompanyTypes();
|
||||||
|
return view('admin::companies.create', $data);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Store a newly created resource in storage.
|
||||||
|
*/
|
||||||
|
public function store(Request $request): RedirectResponse
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
$this->companyRepository->create($request->all());
|
||||||
|
toastr()->success('Company Created Successfully');
|
||||||
|
|
||||||
|
} catch (\Throwable $th) {
|
||||||
|
toastr()->error($th->getMessage());
|
||||||
|
}
|
||||||
|
return redirect()->route('company.index');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show the specified resource.
|
||||||
|
*/
|
||||||
|
public function show($id)
|
||||||
|
{
|
||||||
|
return view('admin::companies.show');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show the form for editing the specified resource.
|
||||||
|
*/
|
||||||
|
public function edit($id)
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
$data['title'] = 'Edit Company';
|
||||||
|
$data['editable'] = true;
|
||||||
|
$data['companyTypeLists'] = $this->adminService->pluckCompanyTypes();
|
||||||
|
$data['company'] = $this->companyRepository->getCompanyById($id);
|
||||||
|
|
||||||
|
} catch (\Throwable $th) {
|
||||||
|
toastr()->error($th->getMessage());
|
||||||
|
}
|
||||||
|
|
||||||
|
return view('admin::companies.edit', $data);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update the specified resource in storage.
|
||||||
|
*/
|
||||||
|
public function update(Request $request, $id): RedirectResponse
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
|
||||||
|
$this->companyRepository->update($id, $request->all());
|
||||||
|
toastr()->success('Company Updated Successfully');
|
||||||
|
|
||||||
|
} catch (\Throwable $th) {
|
||||||
|
toastr()->error($th->getMessage());
|
||||||
|
}
|
||||||
|
return redirect()->route('company.index');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Remove the specified resource from storage.
|
||||||
|
*/
|
||||||
|
public function destroy($id)
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
$this->companyRepository->delete($id);
|
||||||
|
toastr()->success('Company Deleted Successfully');
|
||||||
|
} catch (\Throwable $th) {
|
||||||
|
toastr()->error($th->getMessage());
|
||||||
|
}
|
||||||
|
return redirect()->route('company.index');
|
||||||
|
}
|
||||||
|
}
|
109
Modules/Admin/app/Http/Controllers/CompanyTypeController.php
Normal file
109
Modules/Admin/app/Http/Controllers/CompanyTypeController.php
Normal file
@ -0,0 +1,109 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Admin\Http\Controllers;
|
||||||
|
|
||||||
|
use App\Http\Controllers\Controller;
|
||||||
|
use Illuminate\Http\RedirectResponse;
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
use Illuminate\Http\Response;
|
||||||
|
use Modules\Admin\Repositories\CompanyTypeRepository;
|
||||||
|
|
||||||
|
class CompanyTypeController extends Controller
|
||||||
|
{
|
||||||
|
private $companyTypeRepository;
|
||||||
|
|
||||||
|
public function __construct(CompanyTypeRepository $companyTypeRepository)
|
||||||
|
{
|
||||||
|
$this->companyTypeRepository = $companyTypeRepository;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Display a listing of the resource.
|
||||||
|
*/
|
||||||
|
public function index()
|
||||||
|
{
|
||||||
|
$data['title'] = 'Company Type Lists';
|
||||||
|
$data['companyTypeLists'] = $this->companyTypeRepository->findAll();
|
||||||
|
return view('admin::companytypes.index', $data);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show the form for creating a new resource.
|
||||||
|
*/
|
||||||
|
public function create()
|
||||||
|
{
|
||||||
|
$data['title'] = 'Create Company Type';
|
||||||
|
$data['editable'] = false;
|
||||||
|
return view('admin::companytypes.create', $data);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Store a newly created resource in storage.
|
||||||
|
*/
|
||||||
|
public function store(Request $request): RedirectResponse
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
$this->companyTypeRepository->create($request->all());
|
||||||
|
toastr()->success('Company Type Created Successfully');
|
||||||
|
|
||||||
|
} catch (\Throwable $th) {
|
||||||
|
toastr()->error($th->getMessage());
|
||||||
|
}
|
||||||
|
return redirect()->route('companyType.index');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show the specified resource.
|
||||||
|
*/
|
||||||
|
public function show($id)
|
||||||
|
{
|
||||||
|
return view('admin::companytypes.show');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show the form for editing the specified resource.
|
||||||
|
*/
|
||||||
|
public function edit($id)
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
$data['title'] = 'Edit Company Type';
|
||||||
|
$data['editable'] = true;
|
||||||
|
$data['companyType'] = $this->companyTypeRepository->getCompanyById($id);
|
||||||
|
|
||||||
|
} catch (\Throwable $th) {
|
||||||
|
toastr()->error($th->getMessage());
|
||||||
|
}
|
||||||
|
|
||||||
|
return view('admin::companytypes.edit', $data);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update the specified resource in storage.
|
||||||
|
*/
|
||||||
|
public function update(Request $request, $id): RedirectResponse
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
|
||||||
|
$this->companyTypeRepository->update($id, $request->all());
|
||||||
|
toastr()->success('Company Updated Successfully');
|
||||||
|
|
||||||
|
} catch (\Throwable $th) {
|
||||||
|
toastr()->error($th->getMessage());
|
||||||
|
}
|
||||||
|
return redirect()->route('company.index');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Remove the specified resource from storage.
|
||||||
|
*/
|
||||||
|
public function destroy($id)
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
$this->companyTypeRepository->delete($id);
|
||||||
|
toastr()->success('Company Type Deleted Successfully');
|
||||||
|
} catch (\Throwable $th) {
|
||||||
|
toastr()->error($th->getMessage());
|
||||||
|
}
|
||||||
|
return redirect()->route('companyType.index');
|
||||||
|
}
|
||||||
|
}
|
109
Modules/Admin/app/Http/Controllers/ComplaintController.php
Normal file
109
Modules/Admin/app/Http/Controllers/ComplaintController.php
Normal file
@ -0,0 +1,109 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Admin\Http\Controllers;
|
||||||
|
|
||||||
|
use App\Http\Controllers\Controller;
|
||||||
|
use Illuminate\Http\RedirectResponse;
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
use Illuminate\Http\Response;
|
||||||
|
use Modules\Admin\Repositories\ComplaintRepository;
|
||||||
|
|
||||||
|
class ComplaintController extends Controller
|
||||||
|
{
|
||||||
|
private $complaintRepository;
|
||||||
|
|
||||||
|
public function __construct(ComplaintRepository $complaintRepository)
|
||||||
|
{
|
||||||
|
$this->complaintRepository = $complaintRepository;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Display a listing of the resource.
|
||||||
|
*/
|
||||||
|
public function index()
|
||||||
|
{
|
||||||
|
$data['title'] = 'Complaint Lists';
|
||||||
|
$data['complaintLists'] = $this->complaintRepository->findAll();
|
||||||
|
return view('admin::complaints.index', $data);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show the form for creating a new resource.
|
||||||
|
*/
|
||||||
|
public function create()
|
||||||
|
{
|
||||||
|
$data['title'] = 'Create Complaints';
|
||||||
|
$data['editable'] = false;
|
||||||
|
return view('admin::complaints.create', $data);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Store a newly created resource in storage.
|
||||||
|
*/
|
||||||
|
public function store(Request $request): RedirectResponse
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
$this->complaintRepository->create($request->all());
|
||||||
|
toastr()->success('Complaint Created Successfully');
|
||||||
|
|
||||||
|
} catch (\Throwable $th) {
|
||||||
|
toastr()->error($th->getMessage());
|
||||||
|
}
|
||||||
|
return redirect()->route('complaint.index');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show the specified resource.
|
||||||
|
*/
|
||||||
|
public function show($id)
|
||||||
|
{
|
||||||
|
return view('admin::complaints.show');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show the form for editing the specified resource.
|
||||||
|
*/
|
||||||
|
public function edit($id)
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
$data['title'] = 'Edit Complaints';
|
||||||
|
$data['editable'] = true;
|
||||||
|
$data['complaint'] = $this->complaintRepository->getComplaintById($id);
|
||||||
|
|
||||||
|
} catch (\Throwable $th) {
|
||||||
|
toastr()->error($th->getMessage());
|
||||||
|
}
|
||||||
|
|
||||||
|
return view('admin::complaints.edit', $data);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update the specified resource in storage.
|
||||||
|
*/
|
||||||
|
public function update(Request $request, $id): RedirectResponse
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
|
||||||
|
$this->complaintRepository->update($id, $request->all());
|
||||||
|
toastr()->success('Complaint Updated Successfully');
|
||||||
|
|
||||||
|
} catch (\Throwable $th) {
|
||||||
|
toastr()->error($th->getMessage());
|
||||||
|
}
|
||||||
|
return redirect()->route('complaint.index');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Remove the specified resource from storage.
|
||||||
|
*/
|
||||||
|
public function destroy($id)
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
$this->complaintRepository->delete($id);
|
||||||
|
toastr()->success('Complaint Deleted Successfully');
|
||||||
|
} catch (\Throwable $th) {
|
||||||
|
toastr()->error($th->getMessage());
|
||||||
|
}
|
||||||
|
return redirect()->route('complaint.index');
|
||||||
|
}
|
||||||
|
}
|
109
Modules/Admin/app/Http/Controllers/TransferController.php
Normal file
109
Modules/Admin/app/Http/Controllers/TransferController.php
Normal file
@ -0,0 +1,109 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Admin\Http\Controllers;
|
||||||
|
|
||||||
|
use App\Http\Controllers\Controller;
|
||||||
|
use Illuminate\Http\RedirectResponse;
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
use Illuminate\Http\Response;
|
||||||
|
use Modules\Admin\Repositories\TransferRepository;
|
||||||
|
|
||||||
|
class TransferController extends Controller
|
||||||
|
{
|
||||||
|
private $transferRepository;
|
||||||
|
|
||||||
|
public function __construct(TransferRepository $transferRepository)
|
||||||
|
{
|
||||||
|
$this->transferRepository = $transferRepository;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Display a listing of the resource.
|
||||||
|
*/
|
||||||
|
public function index()
|
||||||
|
{
|
||||||
|
$data['title'] = 'Transfer Lists';
|
||||||
|
$data['transferLists'] = $this->transferRepository->findAll();
|
||||||
|
return view('admin::transfers.index', $data);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show the form for creating a new resource.
|
||||||
|
*/
|
||||||
|
public function create()
|
||||||
|
{
|
||||||
|
$data['title'] = 'Create Transfers';
|
||||||
|
$data['editable'] = false;
|
||||||
|
return view('admin::transfers.create', $data);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Store a newly created resource in storage.
|
||||||
|
*/
|
||||||
|
public function store(Request $request): RedirectResponse
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
$this->transferRepository->create($request->all());
|
||||||
|
toastr()->success('Transfer Created Successfully');
|
||||||
|
|
||||||
|
} catch (\Throwable $th) {
|
||||||
|
toastr()->error($th->getMessage());
|
||||||
|
}
|
||||||
|
return redirect()->route('transfer.index');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show the specified resource.
|
||||||
|
*/
|
||||||
|
public function show($id)
|
||||||
|
{
|
||||||
|
return view('admin::transfers.show');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show the form for editing the specified resource.
|
||||||
|
*/
|
||||||
|
public function edit($id)
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
$data['title'] = 'Edit Transfers';
|
||||||
|
$data['editable'] = true;
|
||||||
|
$data['transfer'] = $this->transferRepository->getTransferById($id);
|
||||||
|
|
||||||
|
} catch (\Throwable $th) {
|
||||||
|
toastr()->error($th->getMessage());
|
||||||
|
}
|
||||||
|
|
||||||
|
return view('admin::transfers.edit', $data);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update the specified resource in storage.
|
||||||
|
*/
|
||||||
|
public function update(Request $request, $id): RedirectResponse
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
|
||||||
|
$this->transferRepository->update($id, $request->all());
|
||||||
|
toastr()->success('Transfer Updated Successfully');
|
||||||
|
|
||||||
|
} catch (\Throwable $th) {
|
||||||
|
toastr()->error($th->getMessage());
|
||||||
|
}
|
||||||
|
return redirect()->route('transfer.index');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Remove the specified resource from storage.
|
||||||
|
*/
|
||||||
|
public function destroy($id)
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
$this->transferRepository->delete($id);
|
||||||
|
toastr()->success('Transfer Deleted Successfully');
|
||||||
|
} catch (\Throwable $th) {
|
||||||
|
toastr()->error($th->getMessage());
|
||||||
|
}
|
||||||
|
return redirect()->route('transfer.index');
|
||||||
|
}
|
||||||
|
}
|
109
Modules/Admin/app/Http/Controllers/WarningController.php
Normal file
109
Modules/Admin/app/Http/Controllers/WarningController.php
Normal file
@ -0,0 +1,109 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Admin\Http\Controllers;
|
||||||
|
|
||||||
|
use App\Http\Controllers\Controller;
|
||||||
|
use Illuminate\Http\RedirectResponse;
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
use Illuminate\Http\Response;
|
||||||
|
use Modules\Admin\Repositories\WarningRepository;
|
||||||
|
|
||||||
|
class WarningController extends Controller
|
||||||
|
{
|
||||||
|
private $warningRepository;
|
||||||
|
|
||||||
|
public function __construct(WarningRepository $warningRepository)
|
||||||
|
{
|
||||||
|
$this->warningRepository = $warningRepository;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Display a listing of the resource.
|
||||||
|
*/
|
||||||
|
public function index()
|
||||||
|
{
|
||||||
|
$data['title'] = 'Warning Lists';
|
||||||
|
$data['warningLists'] = $this->warningRepository->findAll();
|
||||||
|
return view('admin::warnings.index', $data);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show the form for creating a new resource.
|
||||||
|
*/
|
||||||
|
public function create()
|
||||||
|
{
|
||||||
|
$data['title'] = 'Create Warnings';
|
||||||
|
$data['editable'] = false;
|
||||||
|
return view('admin::warnings.create', $data);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Store a newly created resource in storage.
|
||||||
|
*/
|
||||||
|
public function store(Request $request): RedirectResponse
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
$this->warningRepository->create($request->all());
|
||||||
|
toastr()->success('Warning Created Successfully');
|
||||||
|
|
||||||
|
} catch (\Throwable $th) {
|
||||||
|
toastr()->error($th->getMessage());
|
||||||
|
}
|
||||||
|
return redirect()->route('warning.index');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show the specified resource.
|
||||||
|
*/
|
||||||
|
public function show($id)
|
||||||
|
{
|
||||||
|
return view('admin::warnings.show');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show the form for editing the specified resource.
|
||||||
|
*/
|
||||||
|
public function edit($id)
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
$data['title'] = 'Edit Warnings';
|
||||||
|
$data['editable'] = true;
|
||||||
|
$data['warning'] = $this->warningRepository->getWarningById($id);
|
||||||
|
|
||||||
|
} catch (\Throwable $th) {
|
||||||
|
toastr()->error($th->getMessage());
|
||||||
|
}
|
||||||
|
|
||||||
|
return view('admin::warnings.edit', $data);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update the specified resource in storage.
|
||||||
|
*/
|
||||||
|
public function update(Request $request, $id): RedirectResponse
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
|
||||||
|
$this->warningRepository->update($id, $request->all());
|
||||||
|
toastr()->success('Warning Updated Successfully');
|
||||||
|
|
||||||
|
} catch (\Throwable $th) {
|
||||||
|
toastr()->error($th->getMessage());
|
||||||
|
}
|
||||||
|
return redirect()->route('warning.index');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Remove the specified resource from storage.
|
||||||
|
*/
|
||||||
|
public function destroy($id)
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
$this->warningRepository->delete($id);
|
||||||
|
toastr()->success('Warning Deleted Successfully');
|
||||||
|
} catch (\Throwable $th) {
|
||||||
|
toastr()->error($th->getMessage());
|
||||||
|
}
|
||||||
|
return redirect()->route('warning.index');
|
||||||
|
}
|
||||||
|
}
|
28
Modules/Admin/app/Models/Company.php
Normal file
28
Modules/Admin/app/Models/Company.php
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Admin\Models;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||||
|
use Modules\Admin\Database\factories\CompanyFactory;
|
||||||
|
|
||||||
|
class Company extends Model
|
||||||
|
{
|
||||||
|
use HasFactory;
|
||||||
|
|
||||||
|
protected $table = 'tbl_companies';
|
||||||
|
protected $primaryKey = 'company_id';
|
||||||
|
/**
|
||||||
|
* The attributes that are mass assignable.
|
||||||
|
*/
|
||||||
|
protected $fillable = [
|
||||||
|
'title',
|
||||||
|
'alias',
|
||||||
|
'company_type_id',
|
||||||
|
'status',
|
||||||
|
'description',
|
||||||
|
'remarks',
|
||||||
|
'createdBy',
|
||||||
|
'updatedBy',
|
||||||
|
];
|
||||||
|
}
|
28
Modules/Admin/app/Models/CompanyType.php
Normal file
28
Modules/Admin/app/Models/CompanyType.php
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Admin\Models;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||||
|
use Modules\Admin\Database\factories\CompanyTypeFactory;
|
||||||
|
|
||||||
|
class CompanyType extends Model
|
||||||
|
{
|
||||||
|
use HasFactory;
|
||||||
|
|
||||||
|
protected $table = 'tbl_company_types';
|
||||||
|
protected $primaryKey = 'company_type_id';
|
||||||
|
/**
|
||||||
|
* The attributes that are mass assignable.
|
||||||
|
*/
|
||||||
|
protected $fillable = [
|
||||||
|
'title',
|
||||||
|
'alias',
|
||||||
|
'status',
|
||||||
|
'description',
|
||||||
|
'remarks',
|
||||||
|
'createdBy',
|
||||||
|
'updatedBy',
|
||||||
|
];
|
||||||
|
|
||||||
|
}
|
31
Modules/Admin/app/Models/Complaint.php
Normal file
31
Modules/Admin/app/Models/Complaint.php
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Admin\Models;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||||
|
use Modules\Admin\Database\factories\ComplaintFactory;
|
||||||
|
|
||||||
|
class Complaint extends Model
|
||||||
|
{
|
||||||
|
use HasFactory;
|
||||||
|
|
||||||
|
protected $table = 'tbl_complaints';
|
||||||
|
protected $primaryKey = 'complaint_id';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The attributes that are mass assignable.
|
||||||
|
*/
|
||||||
|
protected $fillable = [
|
||||||
|
'complaint_id',
|
||||||
|
'employee_id',
|
||||||
|
'complaint_date',
|
||||||
|
'complaint_by',
|
||||||
|
'description',
|
||||||
|
'remarks',
|
||||||
|
'status',
|
||||||
|
'createdBy',
|
||||||
|
'updatedBy',
|
||||||
|
];
|
||||||
|
|
||||||
|
}
|
29
Modules/Admin/app/Models/Transfer.php
Normal file
29
Modules/Admin/app/Models/Transfer.php
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Admin\Models;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||||
|
use Modules\Admin\Database\factories\TransferFactory;
|
||||||
|
|
||||||
|
class Transfer extends Model
|
||||||
|
{
|
||||||
|
use HasFactory;
|
||||||
|
|
||||||
|
protected $table = 'tbl_transfers';
|
||||||
|
protected $primaryKey = 'transfer_id';
|
||||||
|
/**
|
||||||
|
* The attributes that are mass assignable.
|
||||||
|
*/
|
||||||
|
protected $fillable = [
|
||||||
|
'employee_id',
|
||||||
|
'old_department_id',
|
||||||
|
'new_department_id',
|
||||||
|
'status',
|
||||||
|
'transfer_date',
|
||||||
|
'description',
|
||||||
|
'remarks',
|
||||||
|
'createdBy',
|
||||||
|
'updatedBy',
|
||||||
|
];
|
||||||
|
}
|
28
Modules/Admin/app/Models/Warning.php
Normal file
28
Modules/Admin/app/Models/Warning.php
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Admin\Models;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||||
|
use Modules\Admin\Database\factories\WarningFactory;
|
||||||
|
|
||||||
|
class Warning extends Model
|
||||||
|
{
|
||||||
|
use HasFactory;
|
||||||
|
|
||||||
|
protected $table = 'tbl_warnings';
|
||||||
|
protected $primaryKey = 'warning_id';
|
||||||
|
/**
|
||||||
|
* The attributes that are mass assignable.
|
||||||
|
*/
|
||||||
|
protected $fillable = [
|
||||||
|
'employee_id',
|
||||||
|
'subject',
|
||||||
|
'warning_date',
|
||||||
|
'description',
|
||||||
|
'remarks',
|
||||||
|
'status',
|
||||||
|
'createdBy',
|
||||||
|
'updatedBy',
|
||||||
|
];
|
||||||
|
}
|
@ -7,6 +7,6 @@ interface AppreciationInterface
|
|||||||
public function findAll();
|
public function findAll();
|
||||||
public function getAppreciationById($appreciationId);
|
public function getAppreciationById($appreciationId);
|
||||||
public function delete($appreciationId);
|
public function delete($appreciationId);
|
||||||
public function create(array $AppreciationDetails);
|
public function create(array $appreciationDetails);
|
||||||
public function update($appreciationId, array $newDetails);
|
public function update($appreciationId, array $newDetails);
|
||||||
}
|
}
|
||||||
|
12
Modules/Admin/app/Repositories/CompanyInterface.php
Normal file
12
Modules/Admin/app/Repositories/CompanyInterface.php
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Admin\Repositories;
|
||||||
|
|
||||||
|
interface CompanyInterface
|
||||||
|
{
|
||||||
|
public function findAll();
|
||||||
|
public function getCompanyById($companyId);
|
||||||
|
public function delete($companyId);
|
||||||
|
public function create(array $companyDetails);
|
||||||
|
public function update($companyId, array $newDetails);
|
||||||
|
}
|
35
Modules/Admin/app/Repositories/CompanyRepository.php
Normal file
35
Modules/Admin/app/Repositories/CompanyRepository.php
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Admin\Repositories;
|
||||||
|
|
||||||
|
use Modules\Admin\Models\Company;
|
||||||
|
|
||||||
|
|
||||||
|
class CompanyRepository implements CompanyInterface
|
||||||
|
{
|
||||||
|
public function findAll()
|
||||||
|
{
|
||||||
|
return Company::get();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getCompanyById($companyId)
|
||||||
|
{
|
||||||
|
return Company::findOrFail($companyId);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function delete($companyId)
|
||||||
|
{
|
||||||
|
Company::destroy($companyId);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function create(array $companyDetails)
|
||||||
|
{
|
||||||
|
return Company::create($companyDetails);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function update($companyId, array $newDetails)
|
||||||
|
{
|
||||||
|
return Company::where('company_id', $companyId)->update($newDetails);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
12
Modules/Admin/app/Repositories/CompanyTypeInterface.php
Normal file
12
Modules/Admin/app/Repositories/CompanyTypeInterface.php
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Admin\Repositories;
|
||||||
|
|
||||||
|
interface CompanyTypeInterface
|
||||||
|
{
|
||||||
|
public function findAll();
|
||||||
|
public function getCompanyTypeById($companyTypeId);
|
||||||
|
public function delete($companyTypeId);
|
||||||
|
public function create(array $companyTypeDetails);
|
||||||
|
public function update($companyTypeId, array $newDetails);
|
||||||
|
}
|
35
Modules/Admin/app/Repositories/CompanyTypeRepository.php
Normal file
35
Modules/Admin/app/Repositories/CompanyTypeRepository.php
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Admin\Repositories;
|
||||||
|
|
||||||
|
use Modules\Admin\Models\CompanyType;
|
||||||
|
|
||||||
|
|
||||||
|
class CompanyTypeRepository implements CompanyTypeInterface
|
||||||
|
{
|
||||||
|
public function findAll()
|
||||||
|
{
|
||||||
|
return CompanyType::get();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getCompanyTypeById($companyTypeId)
|
||||||
|
{
|
||||||
|
return CompanyType::findOrFail($companyTypeId);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function delete($companyTypeId)
|
||||||
|
{
|
||||||
|
CompanyType::destroy($companyTypeId);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function create(array $companyTypeDetails)
|
||||||
|
{
|
||||||
|
return CompanyType::create($companyTypeDetails);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function update($companyTypeId, array $newDetails)
|
||||||
|
{
|
||||||
|
return CompanyType::where('companyType_id', $companyTypeId)->update($newDetails);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
12
Modules/Admin/app/Repositories/ComplaintInterface.php
Normal file
12
Modules/Admin/app/Repositories/ComplaintInterface.php
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Admin\Repositories;
|
||||||
|
|
||||||
|
interface ComplaintInterface
|
||||||
|
{
|
||||||
|
public function findAll();
|
||||||
|
public function getComplaintById($complaintId);
|
||||||
|
public function delete($complaintId);
|
||||||
|
public function create(array $complaintDetails);
|
||||||
|
public function update($complaintId, array $newDetails);
|
||||||
|
}
|
35
Modules/Admin/app/Repositories/ComplaintRepository.php
Normal file
35
Modules/Admin/app/Repositories/ComplaintRepository.php
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Admin\Repositories;
|
||||||
|
|
||||||
|
use Modules\Admin\Models\Complaint;
|
||||||
|
|
||||||
|
|
||||||
|
class ComplaintRepository implements ComplaintInterface
|
||||||
|
{
|
||||||
|
public function findAll()
|
||||||
|
{
|
||||||
|
return Complaint::get();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getComplaintById($complaintId)
|
||||||
|
{
|
||||||
|
return Complaint::findOrFail($complaintId);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function delete($complaintId)
|
||||||
|
{
|
||||||
|
Complaint::destroy($complaintId);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function create(array $complaintDetails)
|
||||||
|
{
|
||||||
|
return Complaint::create($complaintDetails);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function update($complaintId, array $newDetails)
|
||||||
|
{
|
||||||
|
return Complaint::where('complaint_id', $complaintId)->update($newDetails);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -7,6 +7,6 @@ interface PromotionDemotionInterface
|
|||||||
public function findAll();
|
public function findAll();
|
||||||
public function getPromotionDemotionById($promotionDemotionId);
|
public function getPromotionDemotionById($promotionDemotionId);
|
||||||
public function delete($promotionDemotionId);
|
public function delete($promotionDemotionId);
|
||||||
public function create(array $PromotionDemotionDetails);
|
public function create(array $promotionDemotionDetails);
|
||||||
public function update($promotionDemotionId, array $newDetails);
|
public function update($promotionDemotionId, array $newDetails);
|
||||||
}
|
}
|
||||||
|
@ -7,6 +7,6 @@ interface ResignationInterface
|
|||||||
public function findAll();
|
public function findAll();
|
||||||
public function getResignationById($resignationId);
|
public function getResignationById($resignationId);
|
||||||
public function delete($resignationId);
|
public function delete($resignationId);
|
||||||
public function create(array $ResignationDetails);
|
public function create(array $resignationDetails);
|
||||||
public function update($resignationId, array $newDetails);
|
public function update($resignationId, array $newDetails);
|
||||||
}
|
}
|
||||||
|
12
Modules/Admin/app/Repositories/TransferInterface.php
Normal file
12
Modules/Admin/app/Repositories/TransferInterface.php
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Admin\Repositories;
|
||||||
|
|
||||||
|
interface TransferInterface
|
||||||
|
{
|
||||||
|
public function findAll();
|
||||||
|
public function getTransferById($transferId);
|
||||||
|
public function delete($transferId);
|
||||||
|
public function create(array $transferDetails);
|
||||||
|
public function update($transferId, array $newDetails);
|
||||||
|
}
|
35
Modules/Admin/app/Repositories/TransferRepository.php
Normal file
35
Modules/Admin/app/Repositories/TransferRepository.php
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Admin\Repositories;
|
||||||
|
|
||||||
|
use Modules\Admin\Models\Transfer;
|
||||||
|
|
||||||
|
|
||||||
|
class TransferRepository implements TransferInterface
|
||||||
|
{
|
||||||
|
public function findAll()
|
||||||
|
{
|
||||||
|
return Transfer::get();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getTransferById($transferId)
|
||||||
|
{
|
||||||
|
return Transfer::findOrFail($transferId);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function delete($transferId)
|
||||||
|
{
|
||||||
|
Transfer::destroy($transferId);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function create(array $transferDetails)
|
||||||
|
{
|
||||||
|
return Transfer::create($transferDetails);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function update($transferId, array $newDetails)
|
||||||
|
{
|
||||||
|
return Transfer::where('transfer_id', $transferId)->update($newDetails);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
12
Modules/Admin/app/Repositories/WarningInterface.php
Normal file
12
Modules/Admin/app/Repositories/WarningInterface.php
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Admin\Repositories;
|
||||||
|
|
||||||
|
interface WarningInterface
|
||||||
|
{
|
||||||
|
public function findAll();
|
||||||
|
public function getWarningById($warningId);
|
||||||
|
public function delete($warningId);
|
||||||
|
public function create(array $warningDetails);
|
||||||
|
public function update($warningId, array $newDetails);
|
||||||
|
}
|
35
Modules/Admin/app/Repositories/WarningRepository.php
Normal file
35
Modules/Admin/app/Repositories/WarningRepository.php
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Admin\Repositories;
|
||||||
|
|
||||||
|
use Modules\Admin\Models\Warning;
|
||||||
|
|
||||||
|
|
||||||
|
class WarningRepository implements WarningInterface
|
||||||
|
{
|
||||||
|
public function findAll()
|
||||||
|
{
|
||||||
|
return Warning::get();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getWarningById($warningId)
|
||||||
|
{
|
||||||
|
return Warning::findOrFail($warningId);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function delete($warningId)
|
||||||
|
{
|
||||||
|
Warning::destroy($warningId);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function create(array $warningDetails)
|
||||||
|
{
|
||||||
|
return Warning::create($warningDetails);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function update($warningId, array $newDetails)
|
||||||
|
{
|
||||||
|
return Warning::where('warning_id', $warningId)->update($newDetails);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -3,6 +3,7 @@ namespace Modules\Admin\Services;
|
|||||||
|
|
||||||
use Modules\Admin\Models\Castes;
|
use Modules\Admin\Models\Castes;
|
||||||
use Modules\Admin\Models\Cities;
|
use Modules\Admin\Models\Cities;
|
||||||
|
use Modules\Admin\Models\CompanyType;
|
||||||
use Modules\Admin\Models\Country;
|
use Modules\Admin\Models\Country;
|
||||||
use Modules\Admin\Models\Departments;
|
use Modules\Admin\Models\Departments;
|
||||||
use Modules\Admin\Models\Designations;
|
use Modules\Admin\Models\Designations;
|
||||||
@ -18,6 +19,11 @@ final class AdminService
|
|||||||
return Country::pluck('title', 'country_id');
|
return Country::pluck('title', 'country_id');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function pluckCompanyTypes()
|
||||||
|
{
|
||||||
|
return CompanyType::pluck('title', 'company_type_id');
|
||||||
|
}
|
||||||
|
|
||||||
function pluckProvinces()
|
function pluckProvinces()
|
||||||
{
|
{
|
||||||
return Province::pluck('title', 'province_id');
|
return Province::pluck('title', 'province_id');
|
||||||
|
@ -18,8 +18,8 @@ return new class extends Migration {
|
|||||||
$table->unsignedBigInteger('old_designation_id')->nullable();
|
$table->unsignedBigInteger('old_designation_id')->nullable();
|
||||||
$table->unsignedBigInteger('new_designation_id')->nullable();
|
$table->unsignedBigInteger('new_designation_id')->nullable();
|
||||||
$table->unsignedBigInteger('type')->nullable();
|
$table->unsignedBigInteger('type')->nullable();
|
||||||
$table->unsignedBigInteger('status')->nullable();
|
|
||||||
$table->date('date')->nullable();
|
$table->date('date')->nullable();
|
||||||
|
$table->integer('status')->nullable();
|
||||||
$table->mediumText('description')->nullable();
|
$table->mediumText('description')->nullable();
|
||||||
$table->mediumText('remarks')->nullable();
|
$table->mediumText('remarks')->nullable();
|
||||||
$table->unsignedBigInteger('createdBy')->nullable();
|
$table->unsignedBigInteger('createdBy')->nullable();
|
||||||
|
@ -18,7 +18,7 @@ return new class extends Migration {
|
|||||||
$table->unsignedBigInteger('employee_id')->nullable();
|
$table->unsignedBigInteger('employee_id')->nullable();
|
||||||
$table->unsignedBigInteger('appreciated_by')->nullable();
|
$table->unsignedBigInteger('appreciated_by')->nullable();
|
||||||
$table->date('appreciated_date')->nullable();
|
$table->date('appreciated_date')->nullable();
|
||||||
$table->unsignedBigInteger('status')->nullable();
|
$table->integer('status')->nullable();
|
||||||
$table->mediumText('description')->nullable();
|
$table->mediumText('description')->nullable();
|
||||||
$table->mediumText('remarks')->nullable();
|
$table->mediumText('remarks')->nullable();
|
||||||
$table->unsignedBigInteger('createdBy')->nullable();
|
$table->unsignedBigInteger('createdBy')->nullable();
|
||||||
|
@ -18,7 +18,7 @@ return new class extends Migration {
|
|||||||
$table->unsignedBigInteger('approved_by')->nullable();
|
$table->unsignedBigInteger('approved_by')->nullable();
|
||||||
$table->mediumText('description')->nullable();
|
$table->mediumText('description')->nullable();
|
||||||
$table->mediumText('remarks')->nullable();
|
$table->mediumText('remarks')->nullable();
|
||||||
$table->unsignedBigInteger('status')->nullable();
|
$table->integer('status')->nullable();
|
||||||
$table->unsignedBigInteger('createdBy')->nullable();
|
$table->unsignedBigInteger('createdBy')->nullable();
|
||||||
$table->unsignedBigInteger('updatedBy')->nullable();
|
$table->unsignedBigInteger('updatedBy')->nullable();
|
||||||
$table->timestamps();
|
$table->timestamps();
|
||||||
|
@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
return new class extends Migration {
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*/
|
||||||
|
public function up(): void
|
||||||
|
{
|
||||||
|
Schema::create('tbl_complaints', function (Blueprint $table) {
|
||||||
|
$table->tinyInteger('complaint_id')->unsigned()->autoIncrement();
|
||||||
|
$table->unsignedBigInteger('employee_id')->nullable();
|
||||||
|
$table->date('complaint_date')->nullable();
|
||||||
|
$table->unsignedBigInteger('complaint_by')->nullable();
|
||||||
|
$table->mediumText('description')->nullable();
|
||||||
|
$table->mediumText('remarks')->nullable();
|
||||||
|
$table->integer('status')->nullable();
|
||||||
|
$table->unsignedBigInteger('createdBy')->nullable();
|
||||||
|
$table->unsignedBigInteger('updatedBy')->nullable();
|
||||||
|
$table->timestamps();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*/
|
||||||
|
public function down(): void
|
||||||
|
{
|
||||||
|
Schema::dropIfExists('tbl_complaints');
|
||||||
|
}
|
||||||
|
};
|
@ -0,0 +1,35 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
return new class extends Migration {
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*/
|
||||||
|
public function up(): void
|
||||||
|
{
|
||||||
|
Schema::create('tbl_transfers', function (Blueprint $table) {
|
||||||
|
$table->tinyInteger('transfer_id')->unsigned()->autoIncrement();
|
||||||
|
$table->unsignedBigInteger('employee_id')->nullable();
|
||||||
|
$table->unsignedBigInteger('old_department_id')->nullable();
|
||||||
|
$table->unsignedBigInteger('new_department_id')->nullable();
|
||||||
|
$table->integer('status')->nullable();
|
||||||
|
$table->date('transfer_date')->nullable();
|
||||||
|
$table->mediumText('description')->nullable();
|
||||||
|
$table->mediumText('remarks')->nullable();
|
||||||
|
$table->unsignedBigInteger('createdBy')->nullable();
|
||||||
|
$table->unsignedBigInteger('updatedBy')->nullable();
|
||||||
|
$table->timestamps();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*/
|
||||||
|
public function down(): void
|
||||||
|
{
|
||||||
|
Schema::dropIfExists('tbl_transfers');
|
||||||
|
}
|
||||||
|
};
|
@ -0,0 +1,35 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
return new class extends Migration {
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*/
|
||||||
|
public function up(): void
|
||||||
|
{
|
||||||
|
Schema::create('tbl_warnings', function (Blueprint $table) {
|
||||||
|
$table->tinyInteger('warning_id')->unsigned()->autoIncrement();
|
||||||
|
$table->unsignedBigInteger('employee_id')->nullable();
|
||||||
|
$table->mediumText('subject')->nullable();
|
||||||
|
$table->string('type')->nullable();
|
||||||
|
$table->date('warning_date')->nullable();
|
||||||
|
$table->mediumText('description')->nullable();
|
||||||
|
$table->mediumText('remarks')->nullable();
|
||||||
|
$table->integer('status')->nullable();
|
||||||
|
$table->unsignedBigInteger('createdBy')->nullable();
|
||||||
|
$table->unsignedBigInteger('updatedBy')->nullable();
|
||||||
|
$table->timestamps();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*/
|
||||||
|
public function down(): void
|
||||||
|
{
|
||||||
|
Schema::dropIfExists('tbl_warnings');
|
||||||
|
}
|
||||||
|
};
|
@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
return new class extends Migration {
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*/
|
||||||
|
public function up(): void
|
||||||
|
{
|
||||||
|
Schema::create('tbl_companies', function (Blueprint $table) {
|
||||||
|
$table->tinyInteger('company_id')->unsigned()->autoIncrement();
|
||||||
|
$table->string('title')->nullable();
|
||||||
|
$table->string('alias')->nullable();
|
||||||
|
$table->unsignedBigInteger('company_type_id')->nullable();
|
||||||
|
$table->integer('status')->nullable();
|
||||||
|
$table->mediumText('description')->nullable();
|
||||||
|
$table->mediumText('remarks')->nullable();
|
||||||
|
$table->unsignedBigInteger('createdBy')->nullable();
|
||||||
|
$table->unsignedBigInteger('updatedBy')->nullable();
|
||||||
|
$table->timestamps();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*/
|
||||||
|
public function down(): void
|
||||||
|
{
|
||||||
|
Schema::dropIfExists('tbl_companies');
|
||||||
|
}
|
||||||
|
};
|
@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
return new class extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*/
|
||||||
|
public function up(): void
|
||||||
|
{
|
||||||
|
Schema::create('tbl_company_types', function (Blueprint $table) {
|
||||||
|
$table->tinyInteger('company_type_id')->unsigned()->autoIncrement();
|
||||||
|
$table->string('title')->nullable();
|
||||||
|
$table->string('alias')->nullable();
|
||||||
|
$table->integer('status')->nullable();
|
||||||
|
$table->mediumText('description')->nullable();
|
||||||
|
$table->mediumText('remarks')->nullable();
|
||||||
|
$table->unsignedBigInteger('createdBy')->nullable();
|
||||||
|
$table->unsignedBigInteger('updatedBy')->nullable();
|
||||||
|
$table->timestamps();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*/
|
||||||
|
public function down(): void
|
||||||
|
{
|
||||||
|
Schema::dropIfExists('tbl_company_types');
|
||||||
|
}
|
||||||
|
};
|
23
Modules/Admin/resources/views/companies/create.blade.php
Normal file
23
Modules/Admin/resources/views/companies/create.blade.php
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
@extends('layouts.app')
|
||||||
|
@section('content')
|
||||||
|
<div class="page-content">
|
||||||
|
<div class="container-fluid">
|
||||||
|
|
||||||
|
<!-- start page title -->
|
||||||
|
@include('layouts.partials.breadcrumb', ['title' => $title])
|
||||||
|
|
||||||
|
<!-- end page title -->
|
||||||
|
|
||||||
|
<div class='card'>
|
||||||
|
<div class='card-body'>
|
||||||
|
|
||||||
|
{{ html()->form('POST')->route('company.store')->class(['needs-validation'])->attributes(['novalidate'])->open() }}
|
||||||
|
|
||||||
|
@include('admin::partials.companies.action')
|
||||||
|
|
||||||
|
{{ html()->form()->close() }}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endsection
|
23
Modules/Admin/resources/views/companies/edit.blade.php
Normal file
23
Modules/Admin/resources/views/companies/edit.blade.php
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
@extends('layouts.app')
|
||||||
|
@section('content')
|
||||||
|
<div class="page-content">
|
||||||
|
<div class="container-fluid">
|
||||||
|
|
||||||
|
<!-- start page title -->
|
||||||
|
@include('layouts.partials.breadcrumb', ['title' => $title])
|
||||||
|
|
||||||
|
<!-- end page title -->
|
||||||
|
|
||||||
|
<div class='card'>
|
||||||
|
<div class='card-body'>
|
||||||
|
|
||||||
|
{{ html()->modelForm($company, 'PUT')->route('company.update', $company->company_id)->class(['needs-validation'])->attributes(['novalidate'])->open() }}
|
||||||
|
|
||||||
|
@include('admin::partials.companies.action')
|
||||||
|
|
||||||
|
{{ html()->form()->close() }}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endsection
|
69
Modules/Admin/resources/views/companies/index.blade.php
Normal file
69
Modules/Admin/resources/views/companies/index.blade.php
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
@extends('layouts.app')
|
||||||
|
@section('content')
|
||||||
|
<div class="page-content">
|
||||||
|
<div class="container-fluid">
|
||||||
|
|
||||||
|
<!-- start page title -->
|
||||||
|
@include('layouts.partials.breadcrumb', ['title' => $title])
|
||||||
|
|
||||||
|
<!-- end page title -->
|
||||||
|
|
||||||
|
<div class="card">
|
||||||
|
<div class="card-header align-items-center d-flex">
|
||||||
|
<h5 class="card-title flex-grow-1 mb-0">{{ $title }}</h5>
|
||||||
|
<div class="flex-shrink-0">
|
||||||
|
<a href="{{ route('company.create') }}" class="btn btn-success waves-effect waves-light"><i
|
||||||
|
class="ri-add-fill me-1 align-bottom"></i> Create Company</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
<table id="buttons-datatables" class="display table-sm table-bordered table">
|
||||||
|
<thead class="table-light">
|
||||||
|
<tr>
|
||||||
|
<th class="tb-col"><span class="overline-title">S.N</span></th>
|
||||||
|
<th class="tb-col"><span class="overline-title">Name</span></th>
|
||||||
|
<th class="tb-col" data-sortable="false"><span class="overline-title">Action</span>
|
||||||
|
</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
|
||||||
|
@foreach ($companyLists as $index => $item)
|
||||||
|
<tr>
|
||||||
|
<td class="tb-col">{{ $index + 1 }}</td>
|
||||||
|
<td class="tb-col">{{ $item->title }}</td>
|
||||||
|
<td class="tb-col">
|
||||||
|
<div class="dropdown d-inline-block">
|
||||||
|
<button class="btn btn-soft-secondary btn-sm dropdown" type="button" data-bs-toggle="dropdown"
|
||||||
|
aria-expanded="false">
|
||||||
|
<i class="ri-more-fill align-middle"></i>
|
||||||
|
</button>
|
||||||
|
<ul class="dropdown-menu dropdown-menu-end">
|
||||||
|
<li><a href="{{ route('company.show', [$item->company_id]) }}" class="dropdown-item"><i
|
||||||
|
class="ri-eye-fill text-muted me-2 align-bottom"></i> View</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li><a href="{{ route('company.edit', [$item->company_id]) }}"
|
||||||
|
class="dropdown-item edit-item-btn"><i
|
||||||
|
class="ri-pencil-fill text-muted me-2 align-bottom"></i>
|
||||||
|
Edit</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="{{ route('company.destroy', [$item->company_id]) }}"
|
||||||
|
class="dropdown-item remove-item-btn" onclick="confirmDelete(this.href)">
|
||||||
|
<i class="ri-delete-bin-fill text-muted me-2 align-bottom"></i> Delete
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
@endforeach
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endsection
|
48
Modules/Admin/resources/views/companies/show.blade.php
Normal file
48
Modules/Admin/resources/views/companies/show.blade.php
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
@extends('layouts.app')
|
||||||
|
@section('content')
|
||||||
|
<div class="page-content">
|
||||||
|
<div class="container-fluid">
|
||||||
|
|
||||||
|
<!-- start page title -->
|
||||||
|
@include('layouts.partials.breadcrumb', ['title' => $title])
|
||||||
|
|
||||||
|
<!-- end page title -->
|
||||||
|
|
||||||
|
<div class='card'>
|
||||||
|
<div class="card-header align-items-center d-flex">
|
||||||
|
<h5 class="card-title flex-grow-1 mb-0">View Detail</h5>
|
||||||
|
<div class="flex-shrink-0">
|
||||||
|
<a href="{{ route('designations.index') }}" class="btn btn-success waves-effect waves-light"><i
|
||||||
|
class="ri-add-fill me-1 align-bottom"></i> Back to List</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class='card-body'>
|
||||||
|
<p><b>Title : </b> <span>{{ $data->title }}</span></p>
|
||||||
|
<p><b>Alias : </b> <span>{{ $data->alias }}</span></p>
|
||||||
|
<p><b>Status : </b> <span
|
||||||
|
class="{{ $data->status == 1 ? 'text-success' : 'text-danger' }}">{{ $data->status == 1 ? 'Active' : 'Inactive' }}</span>
|
||||||
|
</p>
|
||||||
|
<p><b>Remarks : </b> <span>{{ $data->remarks }}</span></p>
|
||||||
|
<p><b>Display Order : </b> <span>{{ $data->display_order }}</span></p>
|
||||||
|
<p><b>Createdby : </b> <span>{{ $data->createdby }}</span></p>
|
||||||
|
<p><b>Updatedby : </b> <span>{{ $data->updatedby }}</span></p>
|
||||||
|
<p><b>Job Description : </b> <span>{{ $data->job_description }}</span></p>
|
||||||
|
<p><b>Departments Id : </b> <span>{{ $data->departments_id }}</span></p>
|
||||||
|
<div class="d-flex justify-content-between">
|
||||||
|
<div>
|
||||||
|
<p><b>Created On :</b> <span>{{ $data->created_at }}</span></p>
|
||||||
|
<p><b>Created By :</b> <span>{{ $data->createdBy }}</span></p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<p><b>Updated On :</b> <span>{{ $data->updated_at }}</span></p>
|
||||||
|
<p><b>Updated By :</b> <span>{{ $data->updatedBy }}</span></p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endSection
|
23
Modules/Admin/resources/views/companytypes/create.blade.php
Normal file
23
Modules/Admin/resources/views/companytypes/create.blade.php
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
@extends('layouts.app')
|
||||||
|
@section('content')
|
||||||
|
<div class="page-content">
|
||||||
|
<div class="container-fluid">
|
||||||
|
|
||||||
|
<!-- start page title -->
|
||||||
|
@include('layouts.partials.breadcrumb', ['title' => $title])
|
||||||
|
|
||||||
|
<!-- end page title -->
|
||||||
|
|
||||||
|
<div class='card'>
|
||||||
|
<div class='card-body'>
|
||||||
|
|
||||||
|
{{ html()->form('POST')->route('companyType.store')->class(['needs-validation'])->attributes(['novalidate'])->open() }}
|
||||||
|
|
||||||
|
@include('admin::partials.companytypes.action')
|
||||||
|
|
||||||
|
{{ html()->form()->close() }}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endsection
|
23
Modules/Admin/resources/views/companytypes/edit.blade.php
Normal file
23
Modules/Admin/resources/views/companytypes/edit.blade.php
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
@extends('layouts.app')
|
||||||
|
@section('content')
|
||||||
|
<div class="page-content">
|
||||||
|
<div class="container-fluid">
|
||||||
|
|
||||||
|
<!-- start page title -->
|
||||||
|
@include('layouts.partials.breadcrumb', ['title' => $title])
|
||||||
|
|
||||||
|
<!-- end page title -->
|
||||||
|
|
||||||
|
<div class='card'>
|
||||||
|
<div class='card-body'>
|
||||||
|
|
||||||
|
{{ html()->modelForm($companyType, 'PUT')->route('companyType.update', $companytype->company_type_id)->class(['needs-validation'])->attributes(['novalidate'])->open() }}
|
||||||
|
|
||||||
|
@include('admin::partials.companytypes.action')
|
||||||
|
|
||||||
|
{{ html()->form()->close() }}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endsection
|
69
Modules/Admin/resources/views/companytypes/index.blade.php
Normal file
69
Modules/Admin/resources/views/companytypes/index.blade.php
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
@extends('layouts.app')
|
||||||
|
@section('content')
|
||||||
|
<div class="page-content">
|
||||||
|
<div class="container-fluid">
|
||||||
|
|
||||||
|
<!-- start page title -->
|
||||||
|
@include('layouts.partials.breadcrumb', ['title' => $title])
|
||||||
|
|
||||||
|
<!-- end page title -->
|
||||||
|
|
||||||
|
<div class="card">
|
||||||
|
<div class="card-header align-items-center d-flex">
|
||||||
|
<h5 class="card-title flex-grow-1 mb-0">{{ $title }}</h5>
|
||||||
|
<div class="flex-shrink-0">
|
||||||
|
<a href="{{ route('companyType.create') }}" class="btn btn-success waves-effect waves-light"><i
|
||||||
|
class="ri-add-fill me-1 align-bottom"></i> Create Company Type</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
<table id="buttons-datatables" class="display table-sm table-bordered table">
|
||||||
|
<thead class="table-light">
|
||||||
|
<tr>
|
||||||
|
<th class="tb-col"><span class="overline-title">S.N</span></th>
|
||||||
|
<th class="tb-col"><span class="overline-title">Name</span></th>
|
||||||
|
<th class="tb-col" data-sortable="false"><span class="overline-title">Action</span>
|
||||||
|
</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
|
||||||
|
@foreach ($companyTypeLists as $index => $item)
|
||||||
|
<tr>
|
||||||
|
<td class="tb-col">{{ $index + 1 }}</td>
|
||||||
|
<td class="tb-col">{{ $item->title }}</td>
|
||||||
|
<td class="tb-col">
|
||||||
|
<div class="dropdown d-inline-block">
|
||||||
|
<button class="btn btn-soft-secondary btn-sm dropdown" type="button" data-bs-toggle="dropdown"
|
||||||
|
aria-expanded="false">
|
||||||
|
<i class="ri-more-fill align-middle"></i>
|
||||||
|
</button>
|
||||||
|
<ul class="dropdown-menu dropdown-menu-end">
|
||||||
|
<li><a href="{{ route('companyType.show', [$item->company_type_id]) }}" class="dropdown-item"><i
|
||||||
|
class="ri-eye-fill text-muted me-2 align-bottom"></i> View</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li><a href="{{ route('companyType.edit', [$item->company_type_id]) }}"
|
||||||
|
class="dropdown-item edit-item-btn"><i
|
||||||
|
class="ri-pencil-fill text-muted me-2 align-bottom"></i>
|
||||||
|
Edit</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="{{ route('companyType.destroy', [$item->company_type_id]) }}"
|
||||||
|
class="dropdown-item remove-item-btn" onclick="confirmDelete(this.href)">
|
||||||
|
<i class="ri-delete-bin-fill text-muted me-2 align-bottom"></i> Delete
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
@endforeach
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endsection
|
48
Modules/Admin/resources/views/companytypes/show.blade.php
Normal file
48
Modules/Admin/resources/views/companytypes/show.blade.php
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
@extends('layouts.app')
|
||||||
|
@section('content')
|
||||||
|
<div class="page-content">
|
||||||
|
<div class="container-fluid">
|
||||||
|
|
||||||
|
<!-- start page title -->
|
||||||
|
@include('layouts.partials.breadcrumb', ['title' => $title])
|
||||||
|
|
||||||
|
<!-- end page title -->
|
||||||
|
|
||||||
|
<div class='card'>
|
||||||
|
<div class="card-header align-items-center d-flex">
|
||||||
|
<h5 class="card-title flex-grow-1 mb-0">View Detail</h5>
|
||||||
|
<div class="flex-shrink-0">
|
||||||
|
<a href="{{ route('designations.index') }}" class="btn btn-success waves-effect waves-light"><i
|
||||||
|
class="ri-add-fill me-1 align-bottom"></i> Back to List</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class='card-body'>
|
||||||
|
<p><b>Title : </b> <span>{{ $data->title }}</span></p>
|
||||||
|
<p><b>Alias : </b> <span>{{ $data->alias }}</span></p>
|
||||||
|
<p><b>Status : </b> <span
|
||||||
|
class="{{ $data->status == 1 ? 'text-success' : 'text-danger' }}">{{ $data->status == 1 ? 'Active' : 'Inactive' }}</span>
|
||||||
|
</p>
|
||||||
|
<p><b>Remarks : </b> <span>{{ $data->remarks }}</span></p>
|
||||||
|
<p><b>Display Order : </b> <span>{{ $data->display_order }}</span></p>
|
||||||
|
<p><b>Createdby : </b> <span>{{ $data->createdby }}</span></p>
|
||||||
|
<p><b>Updatedby : </b> <span>{{ $data->updatedby }}</span></p>
|
||||||
|
<p><b>Job Description : </b> <span>{{ $data->job_description }}</span></p>
|
||||||
|
<p><b>Departments Id : </b> <span>{{ $data->departments_id }}</span></p>
|
||||||
|
<div class="d-flex justify-content-between">
|
||||||
|
<div>
|
||||||
|
<p><b>Created On :</b> <span>{{ $data->created_at }}</span></p>
|
||||||
|
<p><b>Created By :</b> <span>{{ $data->createdBy }}</span></p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<p><b>Updated On :</b> <span>{{ $data->updated_at }}</span></p>
|
||||||
|
<p><b>Updated By :</b> <span>{{ $data->updatedBy }}</span></p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endSection
|
23
Modules/Admin/resources/views/complaints/create.blade.php
Normal file
23
Modules/Admin/resources/views/complaints/create.blade.php
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
@extends('layouts.app')
|
||||||
|
@section('content')
|
||||||
|
<div class="page-content">
|
||||||
|
<div class="container-fluid">
|
||||||
|
|
||||||
|
<!-- start page title -->
|
||||||
|
@include('layouts.partials.breadcrumb', ['title' => $title])
|
||||||
|
|
||||||
|
<!-- end page title -->
|
||||||
|
|
||||||
|
<div class='card'>
|
||||||
|
<div class='card-body'>
|
||||||
|
|
||||||
|
{{ html()->form('POST')->route('complaint.store')->class(['needs-validation'])->attributes(['novalidate'])->open() }}
|
||||||
|
|
||||||
|
@include('admin::partials.complaints.action')
|
||||||
|
|
||||||
|
{{ html()->form()->close() }}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endsection
|
23
Modules/Admin/resources/views/complaints/edit.blade.php
Normal file
23
Modules/Admin/resources/views/complaints/edit.blade.php
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
@extends('layouts.app')
|
||||||
|
@section('content')
|
||||||
|
<div class="page-content">
|
||||||
|
<div class="container-fluid">
|
||||||
|
|
||||||
|
<!-- start page title -->
|
||||||
|
@include('layouts.partials.breadcrumb', ['title' => $title])
|
||||||
|
|
||||||
|
<!-- end page title -->
|
||||||
|
|
||||||
|
<div class='card'>
|
||||||
|
<div class='card-body'>
|
||||||
|
|
||||||
|
{{ html()->modelForm($complaint, 'PUT')->route('complaint.update', $complaint->complaint_id)->class(['needs-validation'])->attributes(['novalidate'])->open() }}
|
||||||
|
|
||||||
|
@include('admin::partials.complaints.action')
|
||||||
|
|
||||||
|
{{ html()->form()->close() }}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endsection
|
73
Modules/Admin/resources/views/complaints/index.blade.php
Normal file
73
Modules/Admin/resources/views/complaints/index.blade.php
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
@extends('layouts.app')
|
||||||
|
@section('content')
|
||||||
|
<div class="page-content">
|
||||||
|
<div class="container-fluid">
|
||||||
|
|
||||||
|
<!-- start page title -->
|
||||||
|
@include('layouts.partials.breadcrumb', ['title' => $title])
|
||||||
|
|
||||||
|
<!-- end page title -->
|
||||||
|
|
||||||
|
<div class="card">
|
||||||
|
<div class="card-header align-items-center d-flex">
|
||||||
|
<h5 class="card-title flex-grow-1 mb-0">{{ $title }}</h5>
|
||||||
|
<div class="flex-shrink-0">
|
||||||
|
<a href="{{ route('complaint.create') }}" class="btn btn-success waves-effect waves-light"><i
|
||||||
|
class="ri-add-fill me-1 align-bottom"></i> Create Complaint</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
<table id="buttons-datatables" class="display table-sm table-bordered table">
|
||||||
|
<thead class="table-light">
|
||||||
|
<tr>
|
||||||
|
<th class="tb-col"><span class="overline-title">S.N</span></th>
|
||||||
|
<th class="tb-col"><span class="overline-title">Complaint Against</span></th>
|
||||||
|
<th class="tb-col"><span class="overline-title">complaint By</span></th>
|
||||||
|
<th class="tb-col"><span class="overline-title">complaint Date</span></th>
|
||||||
|
<th class="tb-col" data-sortable="false"><span class="overline-title">Action</span>
|
||||||
|
</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
|
||||||
|
@foreach ($complaintLists as $index => $item)
|
||||||
|
<tr>
|
||||||
|
<td class="tb-col">{{ $index + 1 }}</td>
|
||||||
|
<td class="tb-col">{{ $item->employee_id }}</td>
|
||||||
|
<td class="tb-col">{{ $item->complaint_by }}</td>
|
||||||
|
<td class="tb-col">{{ $item->complaint_date }}</td>
|
||||||
|
<td class="tb-col">
|
||||||
|
<div class="dropdown d-inline-block">
|
||||||
|
<button class="btn btn-soft-secondary btn-sm dropdown" type="button" data-bs-toggle="dropdown"
|
||||||
|
aria-expanded="false">
|
||||||
|
<i class="ri-more-fill align-middle"></i>
|
||||||
|
</button>
|
||||||
|
<ul class="dropdown-menu dropdown-menu-end">
|
||||||
|
<li><a href="{{ route('complaint.show', [$item->complaint_id]) }}" class="dropdown-item"><i
|
||||||
|
class="ri-eye-fill text-muted me-2 align-bottom"></i> View</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li><a href="{{ route('complaint.edit', [$item->complaint_id]) }}"
|
||||||
|
class="dropdown-item edit-item-btn"><i
|
||||||
|
class="ri-pencil-fill text-muted me-2 align-bottom"></i>
|
||||||
|
Edit</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="{{ route('complaint.destroy', [$item->complaint_id]) }}"
|
||||||
|
class="dropdown-item remove-item-btn" onclick="confirmDelete(this.href)">
|
||||||
|
<i class="ri-delete-bin-fill text-muted me-2 align-bottom"></i> Delete
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
@endforeach
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endsection
|
48
Modules/Admin/resources/views/complaints/show.blade.php
Normal file
48
Modules/Admin/resources/views/complaints/show.blade.php
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
@extends('layouts.app')
|
||||||
|
@section('content')
|
||||||
|
<div class="page-content">
|
||||||
|
<div class="container-fluid">
|
||||||
|
|
||||||
|
<!-- start page title -->
|
||||||
|
@include('layouts.partials.breadcrumb', ['title' => $title])
|
||||||
|
|
||||||
|
<!-- end page title -->
|
||||||
|
|
||||||
|
<div class='card'>
|
||||||
|
<div class="card-header align-items-center d-flex">
|
||||||
|
<h5 class="card-title flex-grow-1 mb-0">View Detail</h5>
|
||||||
|
<div class="flex-shrink-0">
|
||||||
|
<a href="{{ route('complaints.index') }}" class="btn btn-success waves-effect waves-light"><i
|
||||||
|
class="ri-add-fill me-1 align-bottom"></i> Back to List</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class='card-body'>
|
||||||
|
<p><b>Title : </b> <span>{{ $data->title }}</span></p>
|
||||||
|
<p><b>Alias : </b> <span>{{ $data->alias }}</span></p>
|
||||||
|
<p><b>Status : </b> <span
|
||||||
|
class="{{ $data->status == 1 ? 'text-success' : 'text-danger' }}">{{ $data->status == 1 ? 'Active' : 'Inactive' }}</span>
|
||||||
|
</p>
|
||||||
|
<p><b>Remarks : </b> <span>{{ $data->remarks }}</span></p>
|
||||||
|
<p><b>Display Order : </b> <span>{{ $data->display_order }}</span></p>
|
||||||
|
<p><b>Createdby : </b> <span>{{ $data->createdby }}</span></p>
|
||||||
|
<p><b>Updatedby : </b> <span>{{ $data->updatedby }}</span></p>
|
||||||
|
<p><b>Job Description : </b> <span>{{ $data->job_description }}</span></p>
|
||||||
|
<p><b>Departments Id : </b> <span>{{ $data->departments_id }}</span></p>
|
||||||
|
<div class="d-flex justify-content-between">
|
||||||
|
<div>
|
||||||
|
<p><b>Created On :</b> <span>{{ $data->created_at }}</span></p>
|
||||||
|
<p><b>Created By :</b> <span>{{ $data->createdBy }}</span></p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<p><b>Updated On :</b> <span>{{ $data->updated_at }}</span></p>
|
||||||
|
<p><b>Updated By :</b> <span>{{ $data->updatedBy }}</span></p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endSection
|
@ -0,0 +1,26 @@
|
|||||||
|
<div class="row gy-3">
|
||||||
|
|
||||||
|
<div class="col-lg-4 col-md-6">
|
||||||
|
{{ html()->label('Title')->class('form-label') }}
|
||||||
|
{{ html()->text('title')->class('form-control')->placeholder('Enter Title') }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-4 col-md-6">
|
||||||
|
{{ html()->label('Company Type')->class('form-label') }}
|
||||||
|
{{ html()->select('company_type_id', $companyTypeLists)->class('form-select')->placeholder('Select Company Type') }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-12 col-md-12">
|
||||||
|
{{ html()->label('Description')->class('form-label') }}
|
||||||
|
{{ html()->textarea('description')->class('form-control')->attributes(['rows' => 5]) }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-12 col-md-12">
|
||||||
|
{{ html()->label('Remarks')->class('form-label') }}
|
||||||
|
{{ html()->textarea('remarks')->class('form-control')->attributes(['rows' => 5]) }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="text-end">
|
||||||
|
{{ html()->button($editable ? 'Update' : 'Add Company', 'submit')->class('btn btn-success') }}
|
||||||
|
</div>
|
||||||
|
</div>
|
@ -0,0 +1,11 @@
|
|||||||
|
<div class="row gy-3">
|
||||||
|
|
||||||
|
<div class="col-lg-4 col-md-6">
|
||||||
|
{{ html()->label('Title')->class('form-label') }}
|
||||||
|
{{ html()->text('title')->class('form-control')->placeholder('Enter Title') }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="text-end">
|
||||||
|
{{ html()->button($editable ? 'Update' : 'Add Company Type', 'submit')->class('btn btn-success') }}
|
||||||
|
</div>
|
||||||
|
</div>
|
@ -0,0 +1,33 @@
|
|||||||
|
<div class="row gy-3">
|
||||||
|
|
||||||
|
<div class="col-lg-4 col-md-6">
|
||||||
|
{{ html()->label('Complaint Against')->class('form-label') }}
|
||||||
|
{{ html()->select('employee_id')->class('form-select')->placeholder('Select Employee') }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="col-lg-4 col-md-6">
|
||||||
|
{{ html()->label('Complaint By')->class('form-label') }}
|
||||||
|
{{ html()->select('complaint_by')->class('form-select')->placeholder('Select Who Complaint') }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="col-lg-4 col-md-6">
|
||||||
|
{{ html()->label('Complaint Date')->class('form-label') }}
|
||||||
|
{{ html()->date('complaint_date')->class('form-control')->placeholder('Select Date') }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-12 col-md-12">
|
||||||
|
{{ html()->label('Description')->class('form-label') }}
|
||||||
|
{{ html()->textarea('description')->class('form-control')->attributes(['rows' => 5]) }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-12 col-md-12">
|
||||||
|
{{ html()->label('Remarks')->class('form-label') }}
|
||||||
|
{{ html()->textarea('remarks')->class('form-control')->attributes(['rows' => 5]) }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="text-end">
|
||||||
|
{{ html()->button($editable ? 'Update' : 'Add Complaint', 'submit')->class('btn btn-success') }}
|
||||||
|
</div>
|
||||||
|
</div>
|
@ -0,0 +1,37 @@
|
|||||||
|
<div class="row gy-3">
|
||||||
|
|
||||||
|
<div class="col-lg-4 col-md-6">
|
||||||
|
{{ html()->label('Employee')->class('form-label') }}
|
||||||
|
{{ html()->select('employee_id')->class('form-select')->placeholder('Select Employee') }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-4 col-md-6">
|
||||||
|
{{ html()->label('Department From')->class('form-label') }}
|
||||||
|
{{ html()->select('old_department_id')->class('form-select')->placeholder('Select Previous Department') }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="col-lg-4 col-md-6">
|
||||||
|
{{ html()->label('Department To')->class('form-label') }}
|
||||||
|
{{ html()->select('new_department_id')->class('form-select')->placeholder('Select New Department') }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-4 col-md-6">
|
||||||
|
{{ html()->label('Transfer Date')->class('form-label') }}
|
||||||
|
{{ html()->date('transfer_date')->class('form-control')->placeholder('Select Transfer Date') }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-12 col-md-12">
|
||||||
|
{{ html()->label('Description')->class('form-label') }}
|
||||||
|
{{ html()->textarea('description')->class('form-control')->attributes(['rows' => 3]) }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-12 col-md-12">
|
||||||
|
{{ html()->label('Remarks')->class('form-label') }}
|
||||||
|
{{ html()->textarea('remarks')->class('form-control')->attributes(['rows' => 3]) }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="text-end">
|
||||||
|
{{ html()->button($editable ? 'Update' : 'Add Transfer', 'submit')->class('btn btn-success') }}
|
||||||
|
</div>
|
||||||
|
</div>
|
@ -0,0 +1,36 @@
|
|||||||
|
<div class="row gy-3">
|
||||||
|
|
||||||
|
<div class="col-lg-4 col-md-6">
|
||||||
|
{{ html()->label('Employee')->class('form-label') }}
|
||||||
|
{{ html()->select('employee_id')->class('form-select')->placeholder('Select Employee') }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-4 col-md-6">
|
||||||
|
{{ html()->label('Warning type')->class('form-label') }}
|
||||||
|
{{ html()->select('type')->class('form-control')->placeholder('Select Warning Type') }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-4 col-md-6">
|
||||||
|
{{ html()->label('Warning Date')->class('form-label') }}
|
||||||
|
{{ html()->date('warning_date')->class('form-control')->placeholder('Select Warning Date') }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-12 col-md-12">
|
||||||
|
{{ html()->label('Subject')->class('form-label') }}
|
||||||
|
{{ html()->text('subject')->class('form-control')->placeholder('Write Warning Suject') }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-12 col-md-12">
|
||||||
|
{{ html()->label('Description')->class('form-label') }}
|
||||||
|
{{ html()->textarea('description')->class('form-control')->attributes(['rows' => 3]) }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-12 col-md-12">
|
||||||
|
{{ html()->label('Remarks')->class('form-label') }}
|
||||||
|
{{ html()->textarea('remarks')->class('form-control')->attributes(['rows' => 3]) }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="text-end">
|
||||||
|
{{ html()->button($editable ? 'Update' : 'Add Warning', 'submit')->class('btn btn-success') }}
|
||||||
|
</div>
|
||||||
|
</div>
|
23
Modules/Admin/resources/views/transfers/create.blade.php
Normal file
23
Modules/Admin/resources/views/transfers/create.blade.php
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
@extends('layouts.app')
|
||||||
|
@section('content')
|
||||||
|
<div class="page-content">
|
||||||
|
<div class="container-fluid">
|
||||||
|
|
||||||
|
<!-- start page title -->
|
||||||
|
@include('layouts.partials.breadcrumb', ['title' => $title])
|
||||||
|
|
||||||
|
<!-- end page title -->
|
||||||
|
|
||||||
|
<div class='card'>
|
||||||
|
<div class='card-body'>
|
||||||
|
|
||||||
|
{{ html()->form('POST')->route('transfer.store')->class(['needs-validation'])->attributes(['novalidate'])->open() }}
|
||||||
|
|
||||||
|
@include('admin::partials.transfers.action')
|
||||||
|
|
||||||
|
{{ html()->form()->close() }}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endsection
|
23
Modules/Admin/resources/views/transfers/edit.blade.php
Normal file
23
Modules/Admin/resources/views/transfers/edit.blade.php
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
@extends('layouts.app')
|
||||||
|
@section('content')
|
||||||
|
<div class="page-content">
|
||||||
|
<div class="container-fluid">
|
||||||
|
|
||||||
|
<!-- start page title -->
|
||||||
|
@include('layouts.partials.breadcrumb', ['title' => $title])
|
||||||
|
|
||||||
|
<!-- end page title -->
|
||||||
|
|
||||||
|
<div class='card'>
|
||||||
|
<div class='card-body'>
|
||||||
|
|
||||||
|
{{ html()->modelForm($transfer, 'PUT')->route('transfer.update', $transfer->transfer_id)->class(['needs-validation'])->attributes(['novalidate'])->open() }}
|
||||||
|
|
||||||
|
@include('admin::partials.transfers.action')
|
||||||
|
|
||||||
|
{{ html()->form()->close() }}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endsection
|
75
Modules/Admin/resources/views/transfers/index.blade.php
Normal file
75
Modules/Admin/resources/views/transfers/index.blade.php
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
@extends('layouts.app')
|
||||||
|
@section('content')
|
||||||
|
<div class="page-content">
|
||||||
|
<div class="container-fluid">
|
||||||
|
|
||||||
|
<!-- start page title -->
|
||||||
|
@include('layouts.partials.breadcrumb', ['title' => $title])
|
||||||
|
|
||||||
|
<!-- end page title -->
|
||||||
|
|
||||||
|
<div class="card">
|
||||||
|
<div class="card-header align-items-center d-flex">
|
||||||
|
<h5 class="card-title flex-grow-1 mb-0">{{ $title }}</h5>
|
||||||
|
<div class="flex-shrink-0">
|
||||||
|
<a href="{{ route('transfer.create') }}" class="btn btn-success waves-effect waves-light"><i
|
||||||
|
class="ri-add-fill me-1 align-bottom"></i> Create Transfer</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
<table id="buttons-datatables" class="display table-sm table-bordered table">
|
||||||
|
<thead class="table-light">
|
||||||
|
<tr>
|
||||||
|
<th class="tb-col"><span class="overline-title">S.N</span></th>
|
||||||
|
<th class="tb-col"><span class="overline-title">Employee</span></th>
|
||||||
|
<th class="tb-col"><span class="overline-title">Department From</span></th>
|
||||||
|
<th class="tb-col"><span class="overline-title">Department To</span></th>
|
||||||
|
<th class="tb-col"><span class="overline-title">Transfer Date</span></th>
|
||||||
|
<th class="tb-col" data-sortable="false"><span class="overline-title">Action</span>
|
||||||
|
</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
|
||||||
|
@foreach ($transferLists as $index => $item)
|
||||||
|
<tr>
|
||||||
|
<td class="tb-col">{{ $index + 1 }}</td>
|
||||||
|
<td class="tb-col">{{ $item->employee_id }}</td>
|
||||||
|
<td class="tb-col">{{ $item->old_department_id }}</td>
|
||||||
|
<td class="tb-col">{{ $item->new_department_id }}</td>
|
||||||
|
<td class="tb-col">{{ $item->transfer_date }}</td>
|
||||||
|
<td class="tb-col">
|
||||||
|
<div class="dropdown d-inline-block">
|
||||||
|
<button class="btn btn-soft-secondary btn-sm dropdown" type="button" data-bs-toggle="dropdown"
|
||||||
|
aria-expanded="false">
|
||||||
|
<i class="ri-more-fill align-middle"></i>
|
||||||
|
</button>
|
||||||
|
<ul class="dropdown-menu dropdown-menu-end">
|
||||||
|
<li><a href="{{ route('transfer.show', [$item->transfer_id]) }}" class="dropdown-item"><i
|
||||||
|
class="ri-eye-fill text-muted me-2 align-bottom"></i> View</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li><a href="{{ route('transfer.edit', [$item->transfer_id]) }}"
|
||||||
|
class="dropdown-item edit-item-btn"><i
|
||||||
|
class="ri-pencil-fill text-muted me-2 align-bottom"></i>
|
||||||
|
Edit</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="{{ route('transfer.destroy', [$item->transfer_id]) }}"
|
||||||
|
class="dropdown-item remove-item-btn" onclick="confirmDelete(this.href)">
|
||||||
|
<i class="ri-delete-bin-fill text-muted me-2 align-bottom"></i> Delete
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
@endforeach
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endsection
|
48
Modules/Admin/resources/views/transfers/show.blade.php
Normal file
48
Modules/Admin/resources/views/transfers/show.blade.php
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
@extends('layouts.app')
|
||||||
|
@section('content')
|
||||||
|
<div class="page-content">
|
||||||
|
<div class="container-fluid">
|
||||||
|
|
||||||
|
<!-- start page title -->
|
||||||
|
@include('layouts.partials.breadcrumb', ['title' => $title])
|
||||||
|
|
||||||
|
<!-- end page title -->
|
||||||
|
|
||||||
|
<div class='card'>
|
||||||
|
<div class="card-header align-items-center d-flex">
|
||||||
|
<h5 class="card-title flex-grow-1 mb-0">View Detail</h5>
|
||||||
|
<div class="flex-shrink-0">
|
||||||
|
<a href="{{ route('designations.index') }}" class="btn btn-success waves-effect waves-light"><i
|
||||||
|
class="ri-add-fill me-1 align-bottom"></i> Back to List</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class='card-body'>
|
||||||
|
<p><b>Title : </b> <span>{{ $data->title }}</span></p>
|
||||||
|
<p><b>Alias : </b> <span>{{ $data->alias }}</span></p>
|
||||||
|
<p><b>Status : </b> <span
|
||||||
|
class="{{ $data->status == 1 ? 'text-success' : 'text-danger' }}">{{ $data->status == 1 ? 'Active' : 'Inactive' }}</span>
|
||||||
|
</p>
|
||||||
|
<p><b>Remarks : </b> <span>{{ $data->remarks }}</span></p>
|
||||||
|
<p><b>Display Order : </b> <span>{{ $data->display_order }}</span></p>
|
||||||
|
<p><b>Createdby : </b> <span>{{ $data->createdby }}</span></p>
|
||||||
|
<p><b>Updatedby : </b> <span>{{ $data->updatedby }}</span></p>
|
||||||
|
<p><b>Job Description : </b> <span>{{ $data->job_description }}</span></p>
|
||||||
|
<p><b>Departments Id : </b> <span>{{ $data->departments_id }}</span></p>
|
||||||
|
<div class="d-flex justify-content-between">
|
||||||
|
<div>
|
||||||
|
<p><b>Created On :</b> <span>{{ $data->created_at }}</span></p>
|
||||||
|
<p><b>Created By :</b> <span>{{ $data->createdBy }}</span></p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<p><b>Updated On :</b> <span>{{ $data->updated_at }}</span></p>
|
||||||
|
<p><b>Updated By :</b> <span>{{ $data->updatedBy }}</span></p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endSection
|
23
Modules/Admin/resources/views/warnings/create.blade.php
Normal file
23
Modules/Admin/resources/views/warnings/create.blade.php
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
@extends('layouts.app')
|
||||||
|
@section('content')
|
||||||
|
<div class="page-content">
|
||||||
|
<div class="container-fluid">
|
||||||
|
|
||||||
|
<!-- start page title -->
|
||||||
|
@include('layouts.partials.breadcrumb', ['title' => $title])
|
||||||
|
|
||||||
|
<!-- end page title -->
|
||||||
|
|
||||||
|
<div class='card'>
|
||||||
|
<div class='card-body'>
|
||||||
|
|
||||||
|
{{ html()->form('POST')->route('warning.store')->class(['needs-validation'])->attributes(['novalidate'])->open() }}
|
||||||
|
|
||||||
|
@include('admin::partials.warnings.action')
|
||||||
|
|
||||||
|
{{ html()->form()->close() }}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endsection
|
23
Modules/Admin/resources/views/warnings/edit.blade.php
Normal file
23
Modules/Admin/resources/views/warnings/edit.blade.php
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
@extends('layouts.app')
|
||||||
|
@section('content')
|
||||||
|
<div class="page-content">
|
||||||
|
<div class="container-fluid">
|
||||||
|
|
||||||
|
<!-- start page title -->
|
||||||
|
@include('layouts.partials.breadcrumb', ['title' => $title])
|
||||||
|
|
||||||
|
<!-- end page title -->
|
||||||
|
|
||||||
|
<div class='card'>
|
||||||
|
<div class='card-body'>
|
||||||
|
|
||||||
|
{{ html()->modelForm($warning, 'PUT')->route('warning.update', $warning->warning_id)->class(['needs-validation'])->attributes(['novalidate'])->open() }}
|
||||||
|
|
||||||
|
@include('admin::partials.warnings.action')
|
||||||
|
|
||||||
|
{{ html()->form()->close() }}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endsection
|
75
Modules/Admin/resources/views/warnings/index.blade.php
Normal file
75
Modules/Admin/resources/views/warnings/index.blade.php
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
@extends('layouts.app')
|
||||||
|
@section('content')
|
||||||
|
<div class="page-content">
|
||||||
|
<div class="container-fluid">
|
||||||
|
|
||||||
|
<!-- start page title -->
|
||||||
|
@include('layouts.partials.breadcrumb', ['title' => $title])
|
||||||
|
|
||||||
|
<!-- end page title -->
|
||||||
|
|
||||||
|
<div class="card">
|
||||||
|
<div class="card-header align-items-center d-flex">
|
||||||
|
<h5 class="card-title flex-grow-1 mb-0">{{ $title }}</h5>
|
||||||
|
<div class="flex-shrink-0">
|
||||||
|
<a href="{{ route('warning.create') }}" class="btn btn-success waves-effect waves-light"><i
|
||||||
|
class="ri-add-fill me-1 align-bottom"></i> Create Warning</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
<table id="buttons-datatables" class="display table-sm table-bordered table">
|
||||||
|
<thead class="table-light">
|
||||||
|
<tr>
|
||||||
|
<th class="tb-col"><span class="overline-title">S.N</span></th>
|
||||||
|
<th class="tb-col"><span class="overline-title">Employee</span></th>
|
||||||
|
<th class="tb-col"><span class="overline-title">Warning Type</span></th>
|
||||||
|
<th class="tb-col"><span class="overline-title">Subject</span></th>
|
||||||
|
<th class="tb-col"><span class="overline-title">Warning Date</span></th>
|
||||||
|
<th class="tb-col" data-sortable="false"><span class="overline-title">Action</span>
|
||||||
|
</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
|
||||||
|
@foreach ($warningLists as $index => $item)
|
||||||
|
<tr>
|
||||||
|
<td class="tb-col">{{ $index + 1 }}</td>
|
||||||
|
<td class="tb-col">{{ $item->employee_id }}</td>
|
||||||
|
<td class="tb-col">{{ $item->type }}</td>
|
||||||
|
<td class="tb-col">{{ $item->subject }}</td>
|
||||||
|
<td class="tb-col">{{ $item->warning_date }}</td>
|
||||||
|
<td class="tb-col">
|
||||||
|
<div class="dropdown d-inline-block">
|
||||||
|
<button class="btn btn-soft-secondary btn-sm dropdown" type="button" data-bs-toggle="dropdown"
|
||||||
|
aria-expanded="false">
|
||||||
|
<i class="ri-more-fill align-middle"></i>
|
||||||
|
</button>
|
||||||
|
<ul class="dropdown-menu dropdown-menu-end">
|
||||||
|
<li><a href="{{ route('warning.show', [$item->warning_id]) }}" class="dropdown-item"><i
|
||||||
|
class="ri-eye-fill text-muted me-2 align-bottom"></i> View</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li><a href="{{ route('warning.edit', [$item->warning_id]) }}"
|
||||||
|
class="dropdown-item edit-item-btn"><i
|
||||||
|
class="ri-pencil-fill text-muted me-2 align-bottom"></i>
|
||||||
|
Edit</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="{{ route('warning.destroy', [$item->warning_id]) }}"
|
||||||
|
class="dropdown-item remove-item-btn" onclick="confirmDelete(this.href)">
|
||||||
|
<i class="ri-delete-bin-fill text-muted me-2 align-bottom"></i> Delete
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
@endforeach
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endsection
|
48
Modules/Admin/resources/views/warnings/show.blade.php
Normal file
48
Modules/Admin/resources/views/warnings/show.blade.php
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
@extends('layouts.app')
|
||||||
|
@section('content')
|
||||||
|
<div class="page-content">
|
||||||
|
<div class="container-fluid">
|
||||||
|
|
||||||
|
<!-- start page title -->
|
||||||
|
@include('layouts.partials.breadcrumb', ['title' => $title])
|
||||||
|
|
||||||
|
<!-- end page title -->
|
||||||
|
|
||||||
|
<div class='card'>
|
||||||
|
<div class="card-header align-items-center d-flex">
|
||||||
|
<h5 class="card-title flex-grow-1 mb-0">View Detail</h5>
|
||||||
|
<div class="flex-shrink-0">
|
||||||
|
<a href="{{ route('designations.index') }}" class="btn btn-success waves-effect waves-light"><i
|
||||||
|
class="ri-add-fill me-1 align-bottom"></i> Back to List</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class='card-body'>
|
||||||
|
<p><b>Title : </b> <span>{{ $data->title }}</span></p>
|
||||||
|
<p><b>Alias : </b> <span>{{ $data->alias }}</span></p>
|
||||||
|
<p><b>Status : </b> <span
|
||||||
|
class="{{ $data->status == 1 ? 'text-success' : 'text-danger' }}">{{ $data->status == 1 ? 'Active' : 'Inactive' }}</span>
|
||||||
|
</p>
|
||||||
|
<p><b>Remarks : </b> <span>{{ $data->remarks }}</span></p>
|
||||||
|
<p><b>Display Order : </b> <span>{{ $data->display_order }}</span></p>
|
||||||
|
<p><b>Createdby : </b> <span>{{ $data->createdby }}</span></p>
|
||||||
|
<p><b>Updatedby : </b> <span>{{ $data->updatedby }}</span></p>
|
||||||
|
<p><b>Job Description : </b> <span>{{ $data->job_description }}</span></p>
|
||||||
|
<p><b>Departments Id : </b> <span>{{ $data->departments_id }}</span></p>
|
||||||
|
<div class="d-flex justify-content-between">
|
||||||
|
<div>
|
||||||
|
<p><b>Created On :</b> <span>{{ $data->created_at }}</span></p>
|
||||||
|
<p><b>Created By :</b> <span>{{ $data->createdBy }}</span></p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<p><b>Updated On :</b> <span>{{ $data->updated_at }}</span></p>
|
||||||
|
<p><b>Updated By :</b> <span>{{ $data->updatedBy }}</span></p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endSection
|
@ -3,8 +3,13 @@
|
|||||||
use Illuminate\Support\Facades\Route;
|
use Illuminate\Support\Facades\Route;
|
||||||
use Modules\Admin\Http\Controllers\AdminController;
|
use Modules\Admin\Http\Controllers\AdminController;
|
||||||
use Modules\Admin\Http\Controllers\AppreciationController;
|
use Modules\Admin\Http\Controllers\AppreciationController;
|
||||||
|
use Modules\Admin\Http\Controllers\CompanyController;
|
||||||
|
use Modules\Admin\Http\Controllers\CompanyTypeController;
|
||||||
|
use Modules\Admin\Http\Controllers\ComplaintController;
|
||||||
use Modules\Admin\Http\Controllers\PromotionDemotionController;
|
use Modules\Admin\Http\Controllers\PromotionDemotionController;
|
||||||
use Modules\Admin\Http\Controllers\ResignationController;
|
use Modules\Admin\Http\Controllers\ResignationController;
|
||||||
|
use Modules\Admin\Http\Controllers\TransferController;
|
||||||
|
use Modules\Admin\Http\Controllers\WarningController;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
@ -22,6 +27,11 @@ Route::group([], function () {
|
|||||||
Route::resource('promotion-demotion', PromotionDemotionController::class)->names('promotionDemotion');
|
Route::resource('promotion-demotion', PromotionDemotionController::class)->names('promotionDemotion');
|
||||||
Route::resource('appreciation', AppreciationController::class)->names('appreciation');
|
Route::resource('appreciation', AppreciationController::class)->names('appreciation');
|
||||||
Route::resource('resignation', ResignationController::class)->names('resignation');
|
Route::resource('resignation', ResignationController::class)->names('resignation');
|
||||||
|
Route::resource('complaint', ComplaintController::class)->names('complaint');
|
||||||
|
Route::resource('transfer', TransferController::class)->names('transfer');
|
||||||
|
Route::resource('warning', WarningController::class)->names('warning');
|
||||||
|
Route::resource('company', CompanyController::class)->names('company');
|
||||||
|
Route::resource('company-type', CompanyTypeController::class)->names('companyType');
|
||||||
});
|
});
|
||||||
|
|
||||||
require __DIR__ . '/route.countries.php';
|
require __DIR__ . '/route.countries.php';
|
||||||
|
0
Modules/Taxation/app/Http/Controllers/.gitkeep
Normal file
0
Modules/Taxation/app/Http/Controllers/.gitkeep
Normal file
67
Modules/Taxation/app/Http/Controllers/TaxationController.php
Normal file
67
Modules/Taxation/app/Http/Controllers/TaxationController.php
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Taxation\Http\Controllers;
|
||||||
|
|
||||||
|
use App\Http\Controllers\Controller;
|
||||||
|
use Illuminate\Http\RedirectResponse;
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
use Illuminate\Http\Response;
|
||||||
|
|
||||||
|
class TaxationController extends Controller
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Display a listing of the resource.
|
||||||
|
*/
|
||||||
|
public function index()
|
||||||
|
{
|
||||||
|
return view('taxation::index');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show the form for creating a new resource.
|
||||||
|
*/
|
||||||
|
public function create()
|
||||||
|
{
|
||||||
|
return view('taxation::create');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Store a newly created resource in storage.
|
||||||
|
*/
|
||||||
|
public function store(Request $request): RedirectResponse
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show the specified resource.
|
||||||
|
*/
|
||||||
|
public function show($id)
|
||||||
|
{
|
||||||
|
return view('taxation::show');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show the form for editing the specified resource.
|
||||||
|
*/
|
||||||
|
public function edit($id)
|
||||||
|
{
|
||||||
|
return view('taxation::edit');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update the specified resource in storage.
|
||||||
|
*/
|
||||||
|
public function update(Request $request, $id): RedirectResponse
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Remove the specified resource from storage.
|
||||||
|
*/
|
||||||
|
public function destroy($id)
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
}
|
0
Modules/Taxation/app/Http/Requests/.gitkeep
Normal file
0
Modules/Taxation/app/Http/Requests/.gitkeep
Normal file
0
Modules/Taxation/app/Models/.gitkeep
Normal file
0
Modules/Taxation/app/Models/.gitkeep
Normal file
0
Modules/Taxation/app/Observers/.gitkeep
Normal file
0
Modules/Taxation/app/Observers/.gitkeep
Normal file
0
Modules/Taxation/app/Providers/.gitkeep
Normal file
0
Modules/Taxation/app/Providers/.gitkeep
Normal file
49
Modules/Taxation/app/Providers/RouteServiceProvider.php
Normal file
49
Modules/Taxation/app/Providers/RouteServiceProvider.php
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Taxation\Providers;
|
||||||
|
|
||||||
|
use Illuminate\Support\Facades\Route;
|
||||||
|
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
|
||||||
|
|
||||||
|
class RouteServiceProvider extends ServiceProvider
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Called before routes are registered.
|
||||||
|
*
|
||||||
|
* Register any model bindings or pattern based filters.
|
||||||
|
*/
|
||||||
|
public function boot(): void
|
||||||
|
{
|
||||||
|
parent::boot();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Define the routes for the application.
|
||||||
|
*/
|
||||||
|
public function map(): void
|
||||||
|
{
|
||||||
|
$this->mapApiRoutes();
|
||||||
|
|
||||||
|
$this->mapWebRoutes();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Define the "web" routes for the application.
|
||||||
|
*
|
||||||
|
* These routes all receive session state, CSRF protection, etc.
|
||||||
|
*/
|
||||||
|
protected function mapWebRoutes(): void
|
||||||
|
{
|
||||||
|
Route::middleware('web')->group(module_path('Taxation', '/routes/web.php'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Define the "api" routes for the application.
|
||||||
|
*
|
||||||
|
* These routes are typically stateless.
|
||||||
|
*/
|
||||||
|
protected function mapApiRoutes(): void
|
||||||
|
{
|
||||||
|
Route::middleware('api')->prefix('api')->name('api.')->group(module_path('Taxation', '/routes/api.php'));
|
||||||
|
}
|
||||||
|
}
|
114
Modules/Taxation/app/Providers/TaxationServiceProvider.php
Normal file
114
Modules/Taxation/app/Providers/TaxationServiceProvider.php
Normal file
@ -0,0 +1,114 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Taxation\Providers;
|
||||||
|
|
||||||
|
use Illuminate\Support\Facades\Blade;
|
||||||
|
use Illuminate\Support\ServiceProvider;
|
||||||
|
|
||||||
|
class TaxationServiceProvider extends ServiceProvider
|
||||||
|
{
|
||||||
|
protected string $moduleName = 'Taxation';
|
||||||
|
|
||||||
|
protected string $moduleNameLower = 'taxation';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Boot the application events.
|
||||||
|
*/
|
||||||
|
public function boot(): void
|
||||||
|
{
|
||||||
|
$this->registerCommands();
|
||||||
|
$this->registerCommandSchedules();
|
||||||
|
$this->registerTranslations();
|
||||||
|
$this->registerConfig();
|
||||||
|
$this->registerViews();
|
||||||
|
$this->loadMigrationsFrom(module_path($this->moduleName, 'database/migrations'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Register the service provider.
|
||||||
|
*/
|
||||||
|
public function register(): void
|
||||||
|
{
|
||||||
|
$this->app->register(RouteServiceProvider::class);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Register commands in the format of Command::class
|
||||||
|
*/
|
||||||
|
protected function registerCommands(): void
|
||||||
|
{
|
||||||
|
// $this->commands([]);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Register command Schedules.
|
||||||
|
*/
|
||||||
|
protected function registerCommandSchedules(): void
|
||||||
|
{
|
||||||
|
// $this->app->booted(function () {
|
||||||
|
// $schedule = $this->app->make(Schedule::class);
|
||||||
|
// $schedule->command('inspire')->hourly();
|
||||||
|
// });
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Register translations.
|
||||||
|
*/
|
||||||
|
public function registerTranslations(): void
|
||||||
|
{
|
||||||
|
$langPath = resource_path('lang/modules/'.$this->moduleNameLower);
|
||||||
|
|
||||||
|
if (is_dir($langPath)) {
|
||||||
|
$this->loadTranslationsFrom($langPath, $this->moduleNameLower);
|
||||||
|
$this->loadJsonTranslationsFrom($langPath);
|
||||||
|
} else {
|
||||||
|
$this->loadTranslationsFrom(module_path($this->moduleName, 'lang'), $this->moduleNameLower);
|
||||||
|
$this->loadJsonTranslationsFrom(module_path($this->moduleName, 'lang'));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Register config.
|
||||||
|
*/
|
||||||
|
protected function registerConfig(): void
|
||||||
|
{
|
||||||
|
$this->publishes([module_path($this->moduleName, 'config/config.php') => config_path($this->moduleNameLower.'.php')], 'config');
|
||||||
|
$this->mergeConfigFrom(module_path($this->moduleName, 'config/config.php'), $this->moduleNameLower);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Register views.
|
||||||
|
*/
|
||||||
|
public function registerViews(): void
|
||||||
|
{
|
||||||
|
$viewPath = resource_path('views/modules/'.$this->moduleNameLower);
|
||||||
|
$sourcePath = module_path($this->moduleName, 'resources/views');
|
||||||
|
|
||||||
|
$this->publishes([$sourcePath => $viewPath], ['views', $this->moduleNameLower.'-module-views']);
|
||||||
|
|
||||||
|
$this->loadViewsFrom(array_merge($this->getPublishableViewPaths(), [$sourcePath]), $this->moduleNameLower);
|
||||||
|
|
||||||
|
$componentNamespace = str_replace('/', '\\', config('modules.namespace').'\\'.$this->moduleName.'\\'.ltrim(config('modules.paths.generator.component-class.path'), config('modules.paths.app_folder','')));
|
||||||
|
Blade::componentNamespace($componentNamespace, $this->moduleNameLower);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the services provided by the provider.
|
||||||
|
*/
|
||||||
|
public function provides(): array
|
||||||
|
{
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
|
private function getPublishableViewPaths(): array
|
||||||
|
{
|
||||||
|
$paths = [];
|
||||||
|
foreach (config('view.paths') as $path) {
|
||||||
|
if (is_dir($path.'/modules/'.$this->moduleNameLower)) {
|
||||||
|
$paths[] = $path.'/modules/'.$this->moduleNameLower;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $paths;
|
||||||
|
}
|
||||||
|
}
|
0
Modules/Taxation/app/Repositories/.gitkeep
Normal file
0
Modules/Taxation/app/Repositories/.gitkeep
Normal file
15
Modules/Taxation/app/Repositories/EmployeeInterface.php
Normal file
15
Modules/Taxation/app/Repositories/EmployeeInterface.php
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Employee\Repositories;
|
||||||
|
|
||||||
|
interface EmployeeInterface
|
||||||
|
{
|
||||||
|
public function findAll();
|
||||||
|
public function getEmployeeById($employeeId);
|
||||||
|
public function getEmployeeByEmail($email);
|
||||||
|
public function delete($employeeId);
|
||||||
|
public function create($EmployeeDetails);
|
||||||
|
public function update($employeeId, array $newDetails);
|
||||||
|
public function pluck();
|
||||||
|
|
||||||
|
}
|
58
Modules/Taxation/app/Repositories/EmployeeRepository.php
Normal file
58
Modules/Taxation/app/Repositories/EmployeeRepository.php
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Employee\Repositories;
|
||||||
|
|
||||||
|
use Modules\Employee\Models\Employee;
|
||||||
|
|
||||||
|
class EmployeeRepository implements EmployeeInterface
|
||||||
|
{
|
||||||
|
public function findAll()
|
||||||
|
{
|
||||||
|
return Employee::paginate(20);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getEmployeeById($employeeId)
|
||||||
|
{
|
||||||
|
return Employee::findOrFail($employeeId);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getEmployeeByEmail($email)
|
||||||
|
{
|
||||||
|
return Employee::where('email', $email)->first();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function delete($employeeId)
|
||||||
|
{
|
||||||
|
Employee::destroy($employeeId);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function create($employeeDetails)
|
||||||
|
{
|
||||||
|
return Employee::create($employeeDetails);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function update($employeeId, array $newDetails)
|
||||||
|
{
|
||||||
|
return Employee::whereId($employeeId)->update($newDetails);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function pluck()
|
||||||
|
{
|
||||||
|
return Employee::pluck('first_name', 'id');
|
||||||
|
}
|
||||||
|
|
||||||
|
// public function uploadImage($file)
|
||||||
|
// {
|
||||||
|
// if ($req->file()) {
|
||||||
|
// $fileName = time() . '_' . $req->file->getClientOriginalName();
|
||||||
|
// $filePath = $req->file('file')->storeAs('uploads', $fileName, 'public');
|
||||||
|
// $fileModel->name = time() . '_' . $req->file->getClientOriginalName();
|
||||||
|
// $fileModel->file_path = '/storage/' . $filePath;
|
||||||
|
// $fileModel->save();
|
||||||
|
// return back()
|
||||||
|
// ->with('success', 'File has been uploaded.')
|
||||||
|
// ->with('file', $fileName);
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
}
|
30
Modules/Taxation/composer.json
Normal file
30
Modules/Taxation/composer.json
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{
|
||||||
|
"name": "nwidart/taxation",
|
||||||
|
"description": "",
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Nicolas Widart",
|
||||||
|
"email": "n.widart@gmail.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"extra": {
|
||||||
|
"laravel": {
|
||||||
|
"providers": [],
|
||||||
|
"aliases": {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"Modules\\Taxation\\": "app/",
|
||||||
|
"Modules\\Taxation\\Database\\Factories\\": "database/factories/",
|
||||||
|
"Modules\\Taxation\\Database\\Seeders\\": "database/seeders/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"autoload-dev": {
|
||||||
|
"psr-4": {
|
||||||
|
"Modules\\Taxation\\Tests\\": "tests/"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
0
Modules/Taxation/config/.gitkeep
Normal file
0
Modules/Taxation/config/.gitkeep
Normal file
5
Modules/Taxation/config/config.php
Normal file
5
Modules/Taxation/config/config.php
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
'name' => 'Taxation',
|
||||||
|
];
|
0
Modules/Taxation/database/factories/.gitkeep
Normal file
0
Modules/Taxation/database/factories/.gitkeep
Normal file
0
Modules/Taxation/database/migrations/.gitkeep
Normal file
0
Modules/Taxation/database/migrations/.gitkeep
Normal file
0
Modules/Taxation/database/seeders/.gitkeep
Normal file
0
Modules/Taxation/database/seeders/.gitkeep
Normal file
16
Modules/Taxation/database/seeders/TaxationDatabaseSeeder.php
Normal file
16
Modules/Taxation/database/seeders/TaxationDatabaseSeeder.php
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Taxation\database\seeders;
|
||||||
|
|
||||||
|
use Illuminate\Database\Seeder;
|
||||||
|
|
||||||
|
class TaxationDatabaseSeeder extends Seeder
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the database seeds.
|
||||||
|
*/
|
||||||
|
public function run(): void
|
||||||
|
{
|
||||||
|
// $this->call([]);
|
||||||
|
}
|
||||||
|
}
|
11
Modules/Taxation/module.json
Normal file
11
Modules/Taxation/module.json
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"name": "Taxation",
|
||||||
|
"alias": "taxation",
|
||||||
|
"description": "",
|
||||||
|
"keywords": [],
|
||||||
|
"priority": 0,
|
||||||
|
"providers": [
|
||||||
|
"Modules\\Taxation\\Providers\\TaxationServiceProvider"
|
||||||
|
],
|
||||||
|
"files": []
|
||||||
|
}
|
15
Modules/Taxation/package.json
Normal file
15
Modules/Taxation/package.json
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"private": true,
|
||||||
|
"type": "module",
|
||||||
|
"scripts": {
|
||||||
|
"dev": "vite",
|
||||||
|
"build": "vite build"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"axios": "^1.1.2",
|
||||||
|
"laravel-vite-plugin": "^0.7.5",
|
||||||
|
"sass": "^1.69.5",
|
||||||
|
"postcss": "^8.3.7",
|
||||||
|
"vite": "^4.0.0"
|
||||||
|
}
|
||||||
|
}
|
0
Modules/Taxation/resources/assets/.gitkeep
Normal file
0
Modules/Taxation/resources/assets/.gitkeep
Normal file
0
Modules/Taxation/resources/assets/js/app.js
Normal file
0
Modules/Taxation/resources/assets/js/app.js
Normal file
0
Modules/Taxation/resources/assets/sass/app.scss
Normal file
0
Modules/Taxation/resources/assets/sass/app.scss
Normal file
0
Modules/Taxation/resources/views/.gitkeep
Normal file
0
Modules/Taxation/resources/views/.gitkeep
Normal file
29
Modules/Taxation/resources/views/layouts/master.blade.php
Normal file
29
Modules/Taxation/resources/views/layouts/master.blade.php
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
|
||||||
|
<title>Taxation Module - {{ config('app.name', 'Laravel') }}</title>
|
||||||
|
|
||||||
|
<meta name="description" content="{{ $description ?? '' }}">
|
||||||
|
<meta name="keywords" content="{{ $keywords ?? '' }}">
|
||||||
|
<meta name="author" content="{{ $author ?? '' }}">
|
||||||
|
|
||||||
|
<!-- Fonts -->
|
||||||
|
<link rel="preconnect" href="https://fonts.bunny.net">
|
||||||
|
<link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" />
|
||||||
|
|
||||||
|
{{-- Vite CSS --}}
|
||||||
|
{{-- {{ module_vite('build-taxation', 'resources/assets/sass/app.scss') }} --}}
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
@yield('content')
|
||||||
|
|
||||||
|
{{-- Vite JS --}}
|
||||||
|
{{-- {{ module_vite('build-taxation', 'resources/assets/js/app.js') }} --}}
|
||||||
|
</body>
|
30
Modules/Taxation/resources/views/leave-type/create.blade.php
Normal file
30
Modules/Taxation/resources/views/leave-type/create.blade.php
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
@extends('layouts.app')
|
||||||
|
|
||||||
|
@section('content')
|
||||||
|
<div class="page-content">
|
||||||
|
<div class="container-fluid">
|
||||||
|
<!-- start page title -->
|
||||||
|
@include('layouts.partials.breadcrumb', ['title' => $title])
|
||||||
|
<!-- end page title -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-8">
|
||||||
|
<div class="card">
|
||||||
|
<div class="card-body">
|
||||||
|
<form action="{{ route('leaveType.store') }}" class="needs-validation" novalidate method="post">
|
||||||
|
@csrf
|
||||||
|
@include('leave::leave.partials.action')
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--end row-->
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<!-- container-fluid -->
|
||||||
|
</div>
|
||||||
|
@endsection
|
||||||
|
|
||||||
|
@push('js')
|
||||||
|
<script src="{{ asset('assets/js/pages/form-validation.init.js') }}"></script>
|
||||||
|
@endpush
|
47
Modules/Taxation/resources/views/leave-type/edit.blade.php
Normal file
47
Modules/Taxation/resources/views/leave-type/edit.blade.php
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
@extends('layouts.app')
|
||||||
|
|
||||||
|
@section('content')
|
||||||
|
<div class="page-content">
|
||||||
|
<div class="container-fluid">
|
||||||
|
<!-- start page title -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12">
|
||||||
|
<div class="page-title-box d-sm-flex align-items-center justify-content-between">
|
||||||
|
<h4 class="mb-sm-0">{{ $title }}</h4>
|
||||||
|
|
||||||
|
<div class="page-title-right">
|
||||||
|
<ol class="breadcrumb m-0">
|
||||||
|
<li class="breadcrumb-item"><a href="javascript: void(0);">Dashboards</a></li>
|
||||||
|
<li class="breadcrumb-item active">{{ $title }}</li>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- end page title -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-8">
|
||||||
|
<div class="card">
|
||||||
|
<div class="card-body">
|
||||||
|
|
||||||
|
{{ html()->modelForm($leave, 'PUT')->route('leave.update', $leave->id)->class(['needs-validation'])->attributes(['novalidate'])->open() }}
|
||||||
|
|
||||||
|
@include('leave::leave.partials.action')
|
||||||
|
|
||||||
|
{{ html()->closeModelForm() }}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--end row-->
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<!-- container-fluid -->
|
||||||
|
</div>
|
||||||
|
@endsection
|
||||||
|
|
||||||
|
@push('js')
|
||||||
|
<script src="{{ asset('assets/js/pages/form-validation.init.js') }}"></script>
|
||||||
|
@endpush
|
68
Modules/Taxation/resources/views/leave-type/index.blade.php
Normal file
68
Modules/Taxation/resources/views/leave-type/index.blade.php
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
@extends('layouts.app')
|
||||||
|
|
||||||
|
@section('content')
|
||||||
|
<div class="page-content">
|
||||||
|
<div class="container-fluid">
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-12">
|
||||||
|
<div class="card">
|
||||||
|
<div class="card-header align-items-center d-flex">
|
||||||
|
<h5 class="card-title flex-grow-1 mb-0">Leave Lists</h5>
|
||||||
|
<div class="flex-shrink-0">
|
||||||
|
<a href="{{ route('leaveType.create') }}" class="btn btn-success waves-effect waves-light"><i
|
||||||
|
class="ri-add-fill me-1 align-bottom"></i> Add</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="card-body">
|
||||||
|
<div class="table-responsive">
|
||||||
|
<table id="buttons-datatables" class="display table-sm table-bordered table" style="width:100%">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>S.N</th>
|
||||||
|
<th>Leave Type</th>
|
||||||
|
<th>Created By</th>
|
||||||
|
<th>Status</th>
|
||||||
|
<th>Action</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
@forelse ($leaveTypes as $key => $leaveType)
|
||||||
|
<tr>
|
||||||
|
<td>{{ $key + 1 }}</td>
|
||||||
|
<td>{{ $leaveType->employee_id }}</td>
|
||||||
|
<td>{{ $leaveType->start_date }}</td>
|
||||||
|
<td>{{ $leaveType->end_date }}</td>
|
||||||
|
<td>{{ $leaveType->created_at }}</td>
|
||||||
|
<td>
|
||||||
|
<div class="hstack flex-wrap gap-3">
|
||||||
|
<a href="javascript:void(0);" class="link-info fs-15 view-item-btn" data-bs-toggle="modal"
|
||||||
|
data-bs-target="#viewModal">
|
||||||
|
<i class="ri-eye-line"></i>
|
||||||
|
</a>
|
||||||
|
<a href="{{ route('leaveType.edit', $leaveType->leaveType_id) }}"
|
||||||
|
class="link-success fs-15 edit-item-btn"><i class="ri-edit-2-line"></i></a>
|
||||||
|
|
||||||
|
<a href="javascript:void(0);"
|
||||||
|
data-link="{{ route('leaveType.destroy', $leaveType->leaveType_id) }}"
|
||||||
|
data-id="{{ $leaveType->leave_id }}" class="link-danger fs-15 remove-item-btn"><i
|
||||||
|
class="ri-delete-bin-line"></i></a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
@empty
|
||||||
|
@endforelse
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--end row-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endsection
|
@ -0,0 +1,25 @@
|
|||||||
|
<div class="mb-3">
|
||||||
|
|
||||||
|
<label for="employee_id" class="form-label">Employee Name</label>
|
||||||
|
{{ html()->select('employee_id', $employeeList)->class('form-select')->placeholder('Select Employee') }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mb-3">
|
||||||
|
<label for="start_date" class="form-label">Start Leave Date</label>
|
||||||
|
<input type="date" class="form-control" id="start_date" name="start_date"
|
||||||
|
value="{{ old('start_date', $leave->start_date ?? '') }}">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mb-3">
|
||||||
|
<label for="end_date" class="form-label">End Leave Date</label>
|
||||||
|
<input type="date" class="form-control" id="end_date" name="end_date"
|
||||||
|
value="{{ old('end_date', $leave->end_date ?? '') }}">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="text-end">
|
||||||
|
<button type="submit" class="btn btn-primary">{{ isset($leave) ? 'Update' : 'Add Leave' }}</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
@push('js')
|
||||||
|
<script src="{{ asset('assets/js/pages/form-validation.init.js') }}"></script>
|
||||||
|
@endpush
|
@ -0,0 +1,16 @@
|
|||||||
|
<div class="modal fade" id="viewModal" tabindex="-1" aria-labelledby="viewModalLabel" aria-modal="true">
|
||||||
|
<div class="modal-dialog">
|
||||||
|
<div class="modal-content">
|
||||||
|
<div class="modal-header">
|
||||||
|
<h5 class="modal-title" id="exampleModalgridLabel">View Leave</h5>
|
||||||
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||||
|
</div>
|
||||||
|
<div class="modal-body">
|
||||||
|
<form action="{{ route('leave.store') }}" class="needs-validation" novalidate method="post">
|
||||||
|
@csrf
|
||||||
|
@include('leave::leave.partials.action')
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
0
Modules/Taxation/routes/.gitkeep
Normal file
0
Modules/Taxation/routes/.gitkeep
Normal file
19
Modules/Taxation/routes/api.php
Normal file
19
Modules/Taxation/routes/api.php
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Support\Facades\Route;
|
||||||
|
use Modules\Taxation\Http\Controllers\TaxationController;
|
||||||
|
|
||||||
|
/*
|
||||||
|
*--------------------------------------------------------------------------
|
||||||
|
* API Routes
|
||||||
|
*--------------------------------------------------------------------------
|
||||||
|
*
|
||||||
|
* Here is where you can register API routes for your application. These
|
||||||
|
* routes are loaded by the RouteServiceProvider within a group which
|
||||||
|
* is assigned the "api" middleware group. Enjoy building your API!
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
Route::middleware(['auth:sanctum'])->prefix('v1')->group(function () {
|
||||||
|
Route::apiResource('taxation', TaxationController::class)->names('taxation');
|
||||||
|
});
|
19
Modules/Taxation/routes/web.php
Normal file
19
Modules/Taxation/routes/web.php
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Support\Facades\Route;
|
||||||
|
use Modules\Taxation\Http\Controllers\TaxationController;
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Web Routes
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Here is where you can register web routes for your application. These
|
||||||
|
| routes are loaded by the RouteServiceProvider within a group which
|
||||||
|
| contains the "web" middleware group. Now create something great!
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
Route::group([], function () {
|
||||||
|
Route::resource('taxation', TaxationController::class)->names('taxation');
|
||||||
|
});
|
26
Modules/Taxation/vite.config.js
Normal file
26
Modules/Taxation/vite.config.js
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
import { defineConfig } from 'vite';
|
||||||
|
import laravel from 'laravel-vite-plugin';
|
||||||
|
|
||||||
|
export default defineConfig({
|
||||||
|
build: {
|
||||||
|
outDir: '../../public/build-taxation',
|
||||||
|
emptyOutDir: true,
|
||||||
|
manifest: true,
|
||||||
|
},
|
||||||
|
plugins: [
|
||||||
|
laravel({
|
||||||
|
publicDirectory: '../../public',
|
||||||
|
buildDirectory: 'build-taxation',
|
||||||
|
input: [
|
||||||
|
__dirname + '/resources/assets/sass/app.scss',
|
||||||
|
__dirname + '/resources/assets/js/app.js'
|
||||||
|
],
|
||||||
|
refresh: true,
|
||||||
|
}),
|
||||||
|
],
|
||||||
|
});
|
||||||
|
|
||||||
|
//export const paths = [
|
||||||
|
// 'Modules/Taxation/resources/assets/sass/app.scss',
|
||||||
|
// 'Modules/Taxation/resources/assets/js/app.js',
|
||||||
|
//];
|
@ -411,37 +411,37 @@ class OMIS
|
|||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||||
");
|
");
|
||||||
|
|
||||||
DB::statement("CREATE TABLE IF NOT EXISTS `tbl_companytypes` (
|
// DB::statement("CREATE TABLE IF NOT EXISTS `tbl_companytypes` (
|
||||||
`companytype_id` INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
// `companytype_id` INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
||||||
`title` VARCHAR(255),
|
// `title` VARCHAR(255),
|
||||||
`alias` VARCHAR(255),
|
// `alias` VARCHAR(255),
|
||||||
`description` TEXT,
|
// `description` TEXT,
|
||||||
`display_order` INT(11),
|
// `display_order` INT(11),
|
||||||
`status` INT(11),
|
// `status` INT(11),
|
||||||
`remarks` TEXT,
|
// `remarks` TEXT,
|
||||||
`created_at` DATETIME DEFAULT CURRENT_TIMESTAMP,
|
// `created_at` DATETIME DEFAULT CURRENT_TIMESTAMP,
|
||||||
`createdby` INT(11),
|
// `createdby` INT(11),
|
||||||
`updated_at` DATETIME DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
// `updated_at` DATETIME DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||||
`updatedby` INT(11)
|
// `updatedby` INT(11)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
// ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||||
");
|
// ");
|
||||||
DB::statement("CREATE TABLE IF NOT EXISTS `tbl_companies` (
|
// DB::statement("CREATE TABLE IF NOT EXISTS `tbl_companies` (
|
||||||
`company_id` INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
// `company_id` INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
||||||
`title` VARCHAR(255),
|
// `title` VARCHAR(255),
|
||||||
`alias` VARCHAR(255),
|
// `alias` VARCHAR(255),
|
||||||
`description` TEXT,
|
// `description` TEXT,
|
||||||
`address` TEXT,
|
// `address` TEXT,
|
||||||
`cities_id` INT(11),
|
// `cities_id` INT(11),
|
||||||
`companytypes_id` INT(11),
|
// `companytypes_id` INT(11),
|
||||||
`display_order` INT(11),
|
// `display_order` INT(11),
|
||||||
`status` INT(11),
|
// `status` INT(11),
|
||||||
`remarks` TEXT,
|
// `remarks` TEXT,
|
||||||
`created_at` DATETIME DEFAULT CURRENT_TIMESTAMP,
|
// `created_at` DATETIME DEFAULT CURRENT_TIMESTAMP,
|
||||||
`createdby` INT(11),
|
// `createdby` INT(11),
|
||||||
`updated_at` DATETIME DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
// `updated_at` DATETIME DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||||
`updatedby` INT(11)
|
// `updatedby` INT(11)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
// ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||||
");
|
// ");
|
||||||
DB::statement("CREATE TABLE IF NOT EXISTS `tbl_branches` (
|
DB::statement("CREATE TABLE IF NOT EXISTS `tbl_branches` (
|
||||||
`branch_id` INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
`branch_id` INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
||||||
`companies_id` INT(11) NULL,
|
`companies_id` INT(11) NULL,
|
||||||
|
@ -121,7 +121,7 @@ return [
|
|||||||
'listener' => ['path' => 'app/Listeners', 'generate' => false],
|
'listener' => ['path' => 'app/Listeners', 'generate' => false],
|
||||||
'model' => ['path' => 'app/Models', 'generate' => true],
|
'model' => ['path' => 'app/Models', 'generate' => true],
|
||||||
'notifications' => ['path' => 'app/Notifications', 'generate' => false],
|
'notifications' => ['path' => 'app/Notifications', 'generate' => false],
|
||||||
'observer' => ['path' => 'app/Observers', 'generate' => false],
|
'observer' => ['path' => 'app/Observers', 'generate' => true],
|
||||||
'policies' => ['path' => 'app/Policies', 'generate' => false],
|
'policies' => ['path' => 'app/Policies', 'generate' => false],
|
||||||
'provider' => ['path' => 'app/Providers', 'generate' => true],
|
'provider' => ['path' => 'app/Providers', 'generate' => true],
|
||||||
'route-provider' => ['path' => 'app/Providers', 'generate' => true],
|
'route-provider' => ['path' => 'app/Providers', 'generate' => true],
|
||||||
|
@ -3,5 +3,6 @@
|
|||||||
"Employee": true,
|
"Employee": true,
|
||||||
"Attendance": true,
|
"Attendance": true,
|
||||||
"User": true,
|
"User": true,
|
||||||
"Admin": true
|
"Admin": true,
|
||||||
|
"Taxation": true
|
||||||
}
|
}
|
@ -106,9 +106,9 @@
|
|||||||
<!-- JAVASCRIPT -->
|
<!-- JAVASCRIPT -->
|
||||||
<script src="{{ asset('assets/libs/bootstrap/js/bootstrap.bundle.min.js') }}"></script>
|
<script src="{{ asset('assets/libs/bootstrap/js/bootstrap.bundle.min.js') }}"></script>
|
||||||
<script src="{{ asset('assets/libs/jquery/jquery.min.js') }}"></script>
|
<script src="{{ asset('assets/libs/jquery/jquery.min.js') }}"></script>
|
||||||
{{-- <script src="{{ asset('assets/libs/simplebar/simplebar.min.js') }}"></script> --}}
|
<script src="{{ asset('assets/libs/simplebar/simplebar.min.js') }}"></script>
|
||||||
{{-- <script src="{{ asset('assets/libs/node-waves/waves.min.js') }}"></script> --}}
|
<script src="{{ asset('assets/libs/node-waves/waves.min.js') }}"></script>
|
||||||
{{-- <script src="{{ asset('assets/libs/feather-icons/feather.min.js') }}"></script> --}}
|
<script src="{{ asset('assets/libs/feather-icons/feather.min.js') }}"></script>
|
||||||
{{-- <script src="{{ asset('assets/js/pages/plugins/lord-icon-2.1.0.js') }}"></script> --}}
|
{{-- <script src="{{ asset('assets/js/pages/plugins/lord-icon-2.1.0.js') }}"></script> --}}
|
||||||
{{-- <script src="{{ asset('assets/js/plugins.js') }}"></script> --}}
|
{{-- <script src="{{ asset('assets/js/plugins.js') }}"></script> --}}
|
||||||
<script src="{{ asset('assets/libs/@ckeditor/ckeditor5-build-classic/build/ckeditor.js') }}"></script>
|
<script src="{{ asset('assets/libs/@ckeditor/ckeditor5-build-classic/build/ckeditor.js') }}"></script>
|
||||||
|
@ -43,12 +43,12 @@
|
|||||||
<ul class="nav nav-sm flex-column">
|
<ul class="nav nav-sm flex-column">
|
||||||
|
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a href="{{ route('companytypes.index') }}"
|
<a href="{{ route('companyType.index') }}"
|
||||||
class="nav-link @if (\Request::is('companytype') || \Request::is('companytype/*')) active @endif">Company Type</a>
|
class="nav-link @if (\Request::is('company-type') || \Request::is('company-type/*')) active @endif">Company Type</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a href="{{ route('companies.index') }}"
|
<a href="{{ route('company.index') }}"
|
||||||
class="nav-link @if (\Request::is('company') || \Request::is('company/*')) active @endif">Company</a>
|
class="nav-link @if (\Request::is('company') || \Request::is('company/*')) active @endif">Company</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
@ -108,8 +108,24 @@
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link menu-link" href="#MenuThree" data-bs-toggle="collapse" role="button" aria-expanded="false"
|
<a class="nav-link menu-link" href="#taxation" data-bs-toggle="collapse" role="button" aria-expanded="false"
|
||||||
aria-controls="MenuThree">
|
aria-controls="taxation">
|
||||||
|
<i class="ri-book-2-line"></i> <span data-key="t-masters">Taxation</span>
|
||||||
|
</a>
|
||||||
|
<div class="menu-dropdown collapse" id="taxation">
|
||||||
|
<ul class="nav nav-sm flex-column">
|
||||||
|
|
||||||
|
<li class="nav-item">
|
||||||
|
<a href="{{ route('user.index') }}"
|
||||||
|
class="nav-link @if (\Request::is('user') || \Request::is('user/*')) active @endif">Users</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link menu-link" href="#MenuThree" data-bs-toggle="collapse" role="button"
|
||||||
|
aria-expanded="false" aria-controls="MenuThree">
|
||||||
<i class="ri-dashboard-2-line"></i> <span data-key="t-masters">Master</span>
|
<i class="ri-dashboard-2-line"></i> <span data-key="t-masters">Master</span>
|
||||||
</a>
|
</a>
|
||||||
<div class="menu-dropdown collapse" id="MenuThree">
|
<div class="menu-dropdown collapse" id="MenuThree">
|
||||||
@ -125,20 +141,6 @@
|
|||||||
class="nav-link @if (\Request::is('role') || \Request::is('role/*')) active @endif">Roles</a>
|
class="nav-link @if (\Request::is('role') || \Request::is('role/*')) active @endif">Roles</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="nav-item">
|
|
||||||
<a href="{{ route('promotionDemotion.index') }}"
|
|
||||||
class="nav-link @if (\Request::is('promotion-demotion') || \Request::is('promotion-demotion/*')) active @endif">Promotion/ Demotions</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item">
|
|
||||||
<a href="{{ route('appreciation.index') }}"
|
|
||||||
class="nav-link @if (\Request::is('appreciation') || \Request::is('appreciation/*')) active @endif">Appreciations</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item">
|
|
||||||
<a href="{{ route('resignation.index') }}"
|
|
||||||
class="nav-link @if (\Request::is('resignation') || \Request::is('resignation/*')) active @endif">Resignations</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a href="{{ route('countries.index') }}"
|
<a href="{{ route('countries.index') }}"
|
||||||
@ -172,6 +174,18 @@
|
|||||||
class="nav-link @if (\Request::is('nationality') || \Request::is('nationality/*')) active @endif">Nationalities</a>
|
class="nav-link @if (\Request::is('nationality') || \Request::is('nationality/*')) active @endif">Nationalities</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link menu-link" href="#MenuFour" data-bs-toggle="collapse" role="button"
|
||||||
|
aria-expanded="false" aria-controls="MenuFour">
|
||||||
|
<i class="ri-dashboard-2-line"></i> <span data-key="t-hrs">HR</span>
|
||||||
|
</a>
|
||||||
|
<div class="menu-dropdown collapse" id="MenuFour">
|
||||||
|
<ul class="nav nav-sm flex-column">
|
||||||
|
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a href="{{ route('department.index') }}"
|
<a href="{{ route('department.index') }}"
|
||||||
class="nav-link @if (\Request::is('department') || \Request::is('department/*')) active @endif">Departments</a>
|
class="nav-link @if (\Request::is('department') || \Request::is('department/*')) active @endif">Departments</a>
|
||||||
@ -181,6 +195,37 @@
|
|||||||
<a href="{{ route('designation.index') }}"
|
<a href="{{ route('designation.index') }}"
|
||||||
class="nav-link @if (\Request::is('desgination') || \Request::is('desgination/*')) active @endif">Designations</a>
|
class="nav-link @if (\Request::is('desgination') || \Request::is('desgination/*')) active @endif">Designations</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item">
|
||||||
|
<a href="{{ route('promotionDemotion.index') }}"
|
||||||
|
class="nav-link @if (\Request::is('promotion-demotion') || \Request::is('promotion-demotion/*')) active @endif">Promotion/ Demotions</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item">
|
||||||
|
<a href="{{ route('appreciation.index') }}"
|
||||||
|
class="nav-link @if (\Request::is('appreciation') || \Request::is('appreciation/*')) active @endif">Appreciations</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item">
|
||||||
|
<a href="{{ route('complaint.index') }}"
|
||||||
|
class="nav-link @if (\Request::is('complaint') || \Request::is('complaint/*')) active @endif">Complaints</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item">
|
||||||
|
<a href="{{ route('resignation.index') }}"
|
||||||
|
class="nav-link @if (\Request::is('resignation') || \Request::is('resignation/*')) active @endif">Resignations</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item">
|
||||||
|
<a href="{{ route('transfer.index') }}"
|
||||||
|
class="nav-link @if (\Request::is('transfer') || \Request::is('transfer/*')) active @endif">Transfers</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item">
|
||||||
|
<a href="{{ route('warning.index') }}"
|
||||||
|
class="nav-link @if (\Request::is('warning') || \Request::is('warning/*')) active @endif">Warnings</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
|
7
stubs/nwidart-stubs/views/create.stub
Normal file
7
stubs/nwidart-stubs/views/create.stub
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
@extends('$LOWER_NAME$::layouts.master')
|
||||||
|
|
||||||
|
@section('content')
|
||||||
|
<h1>Hello World</h1>
|
||||||
|
|
||||||
|
<p>Module: {!! config('$LOWER_NAME$.name') !!}</p>
|
||||||
|
@endsection
|
7
stubs/nwidart-stubs/views/edit.stub
Normal file
7
stubs/nwidart-stubs/views/edit.stub
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
@extends('$LOWER_NAME$::layouts.master')
|
||||||
|
|
||||||
|
@section('content')
|
||||||
|
<h1>Hello World</h1>
|
||||||
|
|
||||||
|
<p>Module: {!! config('$LOWER_NAME$.name') !!}</p>
|
||||||
|
@endsection
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user