sls/app/Models/PersonalApp.php
2026-07-16 17:31:32 +05:30

19 lines
380 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Attributes\Fillable;
#[Fillable(['user_id', 'name', 'url', 'logo', 'color', 'desc', 'tag'])]
class PersonalApp extends Model
{
/**
* Get the user that owns the custom app.
*/
public function user()
{
return $this->belongsTo(User::class);
}
}