Projects begin

This commit is contained in:
Александр Бабкин
2022-06-27 16:55:01 +03:00
parent 310613e9a8
commit 34f6fa7733
10 changed files with 359 additions and 6 deletions

15
app/Models/Project.php Normal file
View File

@@ -0,0 +1,15 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Project extends Model
{
use HasFactory;
protected $fillable = [
'name',
'description',
];
}