Slim API deployment - composer install + full CRUD endpoints
This commit is contained in:
29
api/src/Models/User.php
Normal file
29
api/src/Models/User.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
|
||||
final class User extends Model
|
||||
{
|
||||
protected $table = 'users';
|
||||
protected $fillable = [
|
||||
'tenant_id', 'role', 'email', 'password_hash',
|
||||
'first_name', 'last_name', 'is_active',
|
||||
];
|
||||
protected $casts = ['is_active' => 'integer'];
|
||||
protected $hidden = ['password_hash'];
|
||||
|
||||
public function tenant(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(Tenant::class, 'tenant_id');
|
||||
}
|
||||
|
||||
public function instructor()
|
||||
{
|
||||
return $this->hasOne(Instructor::class, 'user_id');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user