Aplikasi Keuangan yang mengatur lalu lintas transaksi antara bank dan aplikasi internal Kampus
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.
 
 
 
 
 

36 lines
616 B

<?php
namespace {{ namespace }};
use App\Domains\Identity\Models\User;
use Illuminate\Auth\Access\HandlesAuthorization;
class {{ class }}
{
use HandlesAuthorization;
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;
}
}