1 | <?php |
||
9 | class Client extends Model |
||
10 | { |
||
11 | use HasFactory; |
||
12 | |||
13 | protected $guarded = []; |
||
14 | |||
15 | protected $table = 'key_clients'; |
||
16 | |||
17 | /** |
||
18 | * Get the api key for the related client. |
||
19 | * |
||
20 | * @return \Illuminate\Database\Eloquent\Relations\HasOne |
||
21 | */ |
||
22 | public function apiCredential(): HasOne |
||
26 | } |
||
27 |