59 lines
1.4 KiB
PHP
59 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Domains\QrCode\Models;
|
|
|
|
use App\Domains\Link\Models\Link;
|
|
use App\Domains\Workspace\Models\Workspace;
|
|
use App\Models\User;
|
|
use Database\Factories\QrCodeFactory;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
use Illuminate\Support\Str;
|
|
|
|
class QrCode extends Model
|
|
{
|
|
/** @use HasFactory<QrCodeFactory> */
|
|
use HasFactory, SoftDeletes;
|
|
|
|
protected static function newFactory(): QrCodeFactory
|
|
{
|
|
return QrCodeFactory::new();
|
|
}
|
|
|
|
protected $guarded = ['id'];
|
|
|
|
protected $casts = [
|
|
'payload' => 'array',
|
|
'style' => 'array',
|
|
];
|
|
|
|
protected static function booted(): void
|
|
{
|
|
static::creating(function (self $model) {
|
|
if (empty($model->ulid)) {
|
|
$model->ulid = (string) Str::ulid();
|
|
}
|
|
});
|
|
}
|
|
|
|
/** @return BelongsTo<Workspace, $this> */
|
|
public function workspace(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Workspace::class);
|
|
}
|
|
|
|
/** @return BelongsTo<Link, $this> */
|
|
public function link(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Link::class);
|
|
}
|
|
|
|
/** @return BelongsTo<User, $this> */
|
|
public function creator(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class, 'created_by');
|
|
}
|
|
}
|