🎨 refactor(CountryPolicy): remove debug statement from create method in CountryPolicy class

This commit is contained in:
fsociety
2024-11-21 20:33:13 +01:00
parent ab9d0b30b2
commit 227f911dce

View File

@@ -37,7 +37,6 @@ class CountryPolicy extends BasePolicy
*/
public function create(User $user): bool
{
dd($user);
return $user->can((new \ReflectionClass($this))->getShortName().'.'.__FUNCTION__);
}