mirror of
https://github.com/dyzulk/santulitam-temp.git
synced 2026-01-26 05:45:28 +07:00
16 lines
230 B
PHP
16 lines
230 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Faculty extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'name',
|
|
];
|
|
}
|