add login logic

This commit is contained in:
2025-11-20 00:15:17 +03:00
parent c266131666
commit 1ec7e58088
13 changed files with 396 additions and 16 deletions

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

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