Slim API deployment - composer install + full CRUD endpoints
This commit is contained in:
28
api/src/Models/Student.php
Normal file
28
api/src/Models/Student.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
|
||||
final class Student extends Model
|
||||
{
|
||||
protected $table = 'students';
|
||||
protected $fillable = [
|
||||
'tenant_id', 'template_id', 'first_name', 'last_name',
|
||||
'email', 'phone', 'needs_glasses', 'status', 'notes',
|
||||
];
|
||||
protected $casts = ['needs_glasses' => 'integer', 'tenant_id' => 'integer', 'template_id' => 'integer'];
|
||||
|
||||
public function tenant(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(Tenant::class, 'tenant_id');
|
||||
}
|
||||
|
||||
public function template(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(LicenseClassTemplate::class, 'template_id');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user