can('ViewAny:Discount'); } public function view(AuthUser $authUser, Discount $discount): bool { return $authUser->can('View:Discount'); } public function create(AuthUser $authUser): bool { return $authUser->can('Create:Discount'); } public function update(AuthUser $authUser, Discount $discount): bool { return $authUser->can('Update:Discount'); } public function delete(AuthUser $authUser, Discount $discount): bool { return $authUser->can('Delete:Discount'); } public function restore(AuthUser $authUser, Discount $discount): bool { return $authUser->can('Restore:Discount'); } public function forceDelete(AuthUser $authUser, Discount $discount): bool { return $authUser->can('ForceDelete:Discount'); } public function forceDeleteAny(AuthUser $authUser): bool { return $authUser->can('ForceDeleteAny:Discount'); } public function restoreAny(AuthUser $authUser): bool { return $authUser->can('RestoreAny:Discount'); } public function replicate(AuthUser $authUser, Discount $discount): bool { return $authUser->can('Replicate:Discount'); } public function reorder(AuthUser $authUser): bool { return $authUser->can('Reorder:Discount'); } }