2025-07-17 10:05:47 +09:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
2025-08-21 09:50:15 +09:00
|
|
|
/**
|
|
|
|
|
* @mixin IdeHelperApiKey
|
|
|
|
|
*/
|
2025-07-17 10:05:47 +09:00
|
|
|
class ApiKey extends Model
|
|
|
|
|
{
|
|
|
|
|
protected $fillable = ['key', 'description', 'is_active'];
|
|
|
|
|
}
|