From 2fb143c1f237c8be76ab9bfb713cba3b3ca04839 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Fri, 28 Aug 2026 12:42:59 +0530 Subject: [PATCH] Added pump testing result policies and model file --- app/Models/PumpTestingResult.php | 47 ++++++++++ app/Policies/PumpTestingResultPolicy.php | 105 +++++++++++++++++++++++ 2 files changed, 152 insertions(+) create mode 100644 app/Models/PumpTestingResult.php create mode 100644 app/Policies/PumpTestingResultPolicy.php diff --git a/app/Models/PumpTestingResult.php b/app/Models/PumpTestingResult.php new file mode 100644 index 0000000..06bcd51 --- /dev/null +++ b/app/Models/PumpTestingResult.php @@ -0,0 +1,47 @@ +belongsTo(Plant::class); + } + + public function pumpTestingMasters(): BelongsTo + { + return $this->belongsTo(PumpTestingMaster::class, 'pump_testing_master_id', 'id'); + } +} diff --git a/app/Policies/PumpTestingResultPolicy.php b/app/Policies/PumpTestingResultPolicy.php new file mode 100644 index 0000000..5583cf6 --- /dev/null +++ b/app/Policies/PumpTestingResultPolicy.php @@ -0,0 +1,105 @@ +checkPermissionTo('view-any PumpTestingResult'); + } + + /** + * Determine whether the user can view the model. + */ + public function view(User $user, PumpTestingResult $pumptestingresult): bool + { + return $user->checkPermissionTo('view PumpTestingResult'); + } + + /** + * Determine whether the user can create models. + */ + public function create(User $user): bool + { + return $user->checkPermissionTo('create PumpTestingResult'); + } + + /** + * Determine whether the user can update the model. + */ + public function update(User $user, PumpTestingResult $pumptestingresult): bool + { + return $user->checkPermissionTo('update PumpTestingResult'); + } + + /** + * Determine whether the user can delete the model. + */ + public function delete(User $user, PumpTestingResult $pumptestingresult): bool + { + return $user->checkPermissionTo('delete PumpTestingResult'); + } + + /** + * Determine whether the user can delete any models. + */ + public function deleteAny(User $user): bool + { + return $user->checkPermissionTo('delete-any PumpTestingResult'); + } + + /** + * Determine whether the user can restore the model. + */ + public function restore(User $user, PumpTestingResult $pumptestingresult): bool + { + return $user->checkPermissionTo('restore PumpTestingResult'); + } + + /** + * Determine whether the user can restore any models. + */ + public function restoreAny(User $user): bool + { + return $user->checkPermissionTo('restore-any PumpTestingResult'); + } + + /** + * Determine whether the user can replicate the model. + */ + public function replicate(User $user, PumpTestingResult $pumptestingresult): bool + { + return $user->checkPermissionTo('replicate PumpTestingResult'); + } + + /** + * Determine whether the user can reorder the models. + */ + public function reorder(User $user): bool + { + return $user->checkPermissionTo('reorder PumpTestingResult'); + } + + /** + * Determine whether the user can permanently delete the model. + */ + public function forceDelete(User $user, PumpTestingResult $pumptestingresult): bool + { + return $user->checkPermissionTo('force-delete PumpTestingResult'); + } + + /** + * Determine whether the user can permanently delete any models. + */ + public function forceDeleteAny(User $user): bool + { + return $user->checkPermissionTo('force-delete-any PumpTestingResult'); + } +}