[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: DesignationController.php
<?php namespace App\Http\Controllers\User; use App\Http\Controllers\Controller; use App\Models\Designation; use Illuminate\Http\Request; use Validator; class DesignationController extends Controller { /** * Create a new controller instance. * * @return void */ public function __construct() { $this->middleware(function ($request, $next) { if (package()->payroll_module != 1) { if (!$request->ajax()) { return back()->with('error', _lang('Sorry, This module is not available in your current package !')); } else { return response()->json(['result' => 'error', 'message' => _lang('Sorry, This module is not available in your current package !')]); } } return $next($request); }); } /** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() { $assets = ['datatable']; $designations = Designation::all()->sortByDesc("id"); return view('backend.user.designation.list', compact('designations', 'assets')); } /** * Show the form for creating a new resource. * * @return \Illuminate\Http\Response */ public function create(Request $request) { if (!$request->ajax()) { return back(); } else { return view('backend.user.designation.modal.create'); } } /** * Store a newly created resource in storage. * * @param \Illuminate\Http\Request $request * @return \Illuminate\Http\Response */ public function store(Request $request) { $validator = Validator::make($request->all(), [ 'name' => 'required', 'department_id' => 'required', ]); if ($validator->fails()) { if ($request->ajax()) { return response()->json(['result' => 'error', 'message' => $validator->errors()->all()]); } else { return redirect()->route('designations.create') ->withErrors($validator) ->withInput(); } } $designation = new Designation(); $designation->name = $request->input('name'); $designation->descriptions = $request->input('descriptions'); $designation->department_id = $request->input('department_id'); $designation->save(); $designation->department_id = $designation->department->name; if (!$request->ajax()) { return redirect()->route('designations.create')->with('success', _lang('Saved Successfully')); } else { return response()->json(['result' => 'success', 'action' => 'store', 'message' => _lang('Saved Successfully'), 'data' => $designation, 'table' => '#designations_table']); } } /** * Display the specified resource. * * @param int $id * @return \Illuminate\Http\Response */ public function show(Request $request, $id) { $designation = Designation::find($id); if (!$request->ajax()) { return back(); } else { return view('backend.user.designation.modal.view', compact('designation', 'id')); } } /** * Show the form for editing the specified resource. * * @param int $id * @return \Illuminate\Http\Response */ public function edit(Request $request, $id) { $designation = Designation::find($id); if (!$request->ajax()) { return back(); } else { return view('backend.user.designation.modal.edit', compact('designation', 'id')); } } /** * Update the specified resource in storage. * * @param \Illuminate\Http\Request $request * @param int $id * @return \Illuminate\Http\Response */ public function update(Request $request, $id) { $validator = Validator::make($request->all(), [ 'name' => 'required', 'department_id' => 'required', ]); if ($validator->fails()) { if ($request->ajax()) { return response()->json(['result' => 'error', 'message' => $validator->errors()->all()]); } else { return redirect()->route('designations.edit', $id) ->withErrors($validator) ->withInput(); } } $designation = Designation::find($id); $designation->name = $request->input('name'); $designation->descriptions = $request->input('descriptions'); $designation->department_id = $request->input('department_id'); $designation->save(); $designation->department_id = $designation->department->name; if (!$request->ajax()) { return redirect()->route('designations.index')->with('success', _lang('Updated Successfully')); } else { return response()->json(['result' => 'success', 'action' => 'update', 'message' => _lang('Updated Successfully'), 'data' => $designation, 'table' => '#designations_table']); } } public function get_designations(Request $request, $department_id) { $designations = Designation::where('department_id', $department_id)->get(); return response()->json($designations); } /** * Remove the specified resource from storage. * * @param int $id * @return \Illuminate\Http\Response */ public function destroy($id) { $designation = Designation::find($id); try { $designation->delete(); return redirect()->route('designations.index')->with('success', _lang('Deleted Successfully')); } catch (\Exception $e) { return redirect()->route('designations.index')->with('error', _lang('This items is already exists in other entity')); } } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.81 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002