16 lines
212 B
PHP
16 lines
212 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Project extends Model
|
|
{
|
|
//
|
|
protected $fillable = [
|
|
'title',
|
|
'description',
|
|
'creator_user_id',
|
|
];
|
|
}
|