PATH:
home
/
lab2454c
/
bancmils.com
/
vendor
/
laravel
/
sanctum
/
src
/
Contracts
<?php namespace Laravel\Sanctum\Contracts; interface HasAbilities { /** * Determine if the token has a given ability. * * @param string $ability * @return bool */ public function can($ability); /** * Determine if the token is missing a given ability. * * @param string $ability * @return bool */ public function cant($ability); }
[+]
..
[-] HasAbilities.php
[edit]
[-] HasApiTokens.php
[edit]
[-] .htaccess
[edit]