📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-02 09:11:23
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
app
/
Http
/
Controllers
/
Admin
📍 /home/orkouolp/web/testing.orkobd/laravel/app/Http/Controllers/Admin
🔄 Refresh
✏️
Editing: JobCategoryController.php
Writable
<?php namespace App\Http\Controllers\Admin; use App\Traits\Searchable; use App\Models\JobCategory; use Illuminate\Http\Request; use App\Http\Controllers\Controller; class JobCategoryController extends Controller { use Searchable; /** * Display a listing of the resource. */ public function index() { $query = JobCategory::query(); $this->search($query, ['name']); $jobCategories = $query->paginate(20); //1 return view('admin.job.job-category.index', compact('jobCategories')); } /** * Show the form for creating a new resource. */ public function create() { return view('admin.job.job-category.create'); } /** * Store a newly created resource in storage. */ public function store(Request $request) { // } /** * Display the specified resource. */ public function show(string $id) { // } /** * Show the form for editing the specified resource. */ public function edit(string $id) { // } /** * Update the specified resource in storage. */ public function update(Request $request, string $id) { // } /** * Remove the specified resource from storage. */ public function destroy(string $id) { // } }
💾 Save Changes
❌ Cancel