query('menu_id'); $user = Auth::user(); $userId = $user->id; // Ambil role_id yang dimiliki user $roleIds = DB::table('user_role') ->where('user_id', $userId) ->pluck('role_id'); // Ambil data akses berdasarkan role_id dan menu_id $roleAccess = DB::table('role_menu') ->whereIn('role_id', $roleIds) ->where('menu_id', $menuId) ->first(); // Pastikan roleAccess tidak null sebelum mengakses properti $creator = $roleAccess->allow_create ?? 0; $updater = $roleAccess->allow_update ?? 0; $destroyer = $roleAccess->allow_destroy ?? 0; return view('pbg_task.index', compact('creator', 'updater', 'destroyer')); } /** * Show the form for creating a new resource. */ public function create() { return view("pbg_task.create"); } /** * Store a newly created resource in storage. */ public function store(Request $request) { } /** * Display the specified resource. */ public function show(string $id) { $data = PbgTask::with(['pbg_task_retributions','pbg_task_index_integrations', 'pbg_task_retributions.pbg_task_prasarana'])->findOrFail($id); return view("pbg_task.show", compact("data")); } /** * Show the form for editing the specified resource. */ public function edit(string $id) { return view("pbg_task.edit"); } /** * Update the specified resource in storage. */ public function update(Request $request, string $id) { // } /** * Remove the specified resource from storage. */ public function destroy(string $id) { // } }