route('kompetensi'); // Determine if the user is authorized to access kompetensi module, if (is_null($kompetensi)) { return $request->user()->canDo('kompetensi.kompetensi.view'); } // Determine if the user is authorized to create an entry, if ($request->isMethod('POST') || $request->is('*/create')) { return Gate::allows('create', $kompetensi); } // Determine if the user is authorized to update an entry, if ($request->isMethod('PUT') || $request->isMethod('PATCH') || $request->is('*/edit')) { return Gate::allows('update', $kompetensi); } // Determine if the user is authorized to delete an entry, if ($request->isMethod('DELETE')) { return Gate::allows('delete', $kompetensi); } // Determine if the user is authorized to view the module. return Gate::allows('view', $kompetensi); } /** * Get the validation rules that apply to the request. * * @return array */ public function rules(Request $request) { // validation rule for create request. if ($request->isMethod('POST')) { return [ ]; } // Validation rule for update request. if ($request->isMethod('PUT') || $request->isMethod('PATCH')) { return [ ]; } // Default validation rule. return [ ]; } }