70208d2157
Shift automatically applies the Laravel coding style - which uses the PSR-12 coding style as a base with some minor additions. You may customize the code style applied by configuring [Pint](https://laravel.com/docs/pint), [PHP CS Fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer), or [PHP CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) for your project root. For more information on customizing the code style applied by Shift, [watch this short video](https://laravelshift.com/videos/shift-code-style).
36 lines
759 B
PHP
36 lines
759 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Hidehalo\Nanoid\Client;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ApplicationApi extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = ['token', 'memo', 'last_used'];
|
|
|
|
protected $primaryKey = 'token';
|
|
|
|
public $incrementing = false;
|
|
|
|
protected $dates = ['last_used'];
|
|
|
|
public static function boot()
|
|
{
|
|
parent::boot();
|
|
|
|
static::creating(function (ApplicationApi $applicationApi) {
|
|
$client = new Client();
|
|
|
|
$applicationApi->{$applicationApi->getKeyName()} = $client->generateId(48);
|
|
});
|
|
}
|
|
|
|
public function updateLastUsed()
|
|
{
|
|
$this->update(['last_used' => now()]);
|
|
}
|
|
}
|