34 lines
715 B
PHP
34 lines
715 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class UserTenantPreference extends Model
|
|
{
|
|
protected $guarded = [];
|
|
|
|
protected $table = 'user_managed_environment_preferences';
|
|
|
|
protected $casts = [
|
|
'is_favorite' => 'boolean',
|
|
'last_used_at' => 'datetime',
|
|
];
|
|
|
|
public function user(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
|
|
public function tenant(): BelongsTo
|
|
{
|
|
return $this->managedEnvironment();
|
|
}
|
|
|
|
public function managedEnvironment(): BelongsTo
|
|
{
|
|
return $this->belongsTo(ManagedEnvironment::class, 'managed_environment_id');
|
|
}
|
|
}
|