You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
535 B
33 lines
535 B
<?php
|
|
|
|
namespace {{ namespace }};
|
|
|
|
use App\Domains\Identity\Models\User;
|
|
|
|
class {{ class }}
|
|
{
|
|
public function viewAny(User $user): bool
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public function view(User $user, mixed $model): bool
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public function create(User $user): bool
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public function update(User $user, mixed $model): bool
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public function delete(User $user, mixed $model): bool
|
|
{
|
|
return false;
|
|
}
|
|
}
|