diff --git a/app/Models/WindedSerialValidationError.php b/app/Models/WindedSerialValidationError.php new file mode 100644 index 0000000..d72615c --- /dev/null +++ b/app/Models/WindedSerialValidationError.php @@ -0,0 +1,45 @@ +belongsTo(Plant::class); + } + + public function item() + { + return $this->belongsTo(Item::class, 'item_id', 'id'); + } + + public function machine(): BelongsTo + { + return $this->belongsTo(Machine::class); + } +} diff --git a/app/Policies/WindedSerialValidationErrorPolicy.php b/app/Policies/WindedSerialValidationErrorPolicy.php new file mode 100644 index 0000000..8d22790 --- /dev/null +++ b/app/Policies/WindedSerialValidationErrorPolicy.php @@ -0,0 +1,105 @@ +checkPermissionTo('view-any WindedSerialValidationError'); + } + + /** + * Determine whether the user can view the model. + */ + public function view(User $user, WindedSerialValidationError $windedserialvalidationerror): bool + { + return $user->checkPermissionTo('view WindedSerialValidationError'); + } + + /** + * Determine whether the user can create models. + */ + public function create(User $user): bool + { + return $user->checkPermissionTo('create WindedSerialValidationError'); + } + + /** + * Determine whether the user can update the model. + */ + public function update(User $user, WindedSerialValidationError $windedserialvalidationerror): bool + { + return $user->checkPermissionTo('update WindedSerialValidationError'); + } + + /** + * Determine whether the user can delete the model. + */ + public function delete(User $user, WindedSerialValidationError $windedserialvalidationerror): bool + { + return $user->checkPermissionTo('delete WindedSerialValidationError'); + } + + /** + * Determine whether the user can delete any models. + */ + public function deleteAny(User $user): bool + { + return $user->checkPermissionTo('delete-any WindedSerialValidationError'); + } + + /** + * Determine whether the user can restore the model. + */ + public function restore(User $user, WindedSerialValidationError $windedserialvalidationerror): bool + { + return $user->checkPermissionTo('restore WindedSerialValidationError'); + } + + /** + * Determine whether the user can restore any models. + */ + public function restoreAny(User $user): bool + { + return $user->checkPermissionTo('restore-any WindedSerialValidationError'); + } + + /** + * Determine whether the user can replicate the model. + */ + public function replicate(User $user, WindedSerialValidationError $windedserialvalidationerror): bool + { + return $user->checkPermissionTo('replicate WindedSerialValidationError'); + } + + /** + * Determine whether the user can reorder the models. + */ + public function reorder(User $user): bool + { + return $user->checkPermissionTo('reorder WindedSerialValidationError'); + } + + /** + * Determine whether the user can permanently delete the model. + */ + public function forceDelete(User $user, WindedSerialValidationError $windedserialvalidationerror): bool + { + return $user->checkPermissionTo('force-delete WindedSerialValidationError'); + } + + /** + * Determine whether the user can permanently delete any models. + */ + public function forceDeleteAny(User $user): bool + { + return $user->checkPermissionTo('force-delete-any WindedSerialValidationError'); + } +}