Eggs should not be manually created

This commit is contained in:
Lance Pioch 2024-03-24 01:36:32 -04:00
parent 0ef015bb0e
commit 0961d6314c

View File

@ -0,0 +1,13 @@
<?php
namespace App\Policies;
use App\Models\User;
class EggPolicy
{
public function create(User $user): bool
{
return false;
}
}