First commit with first test

This commit is contained in:
PovilasKorop
2021-11-08 11:50:12 +02:00
commit 9e64ef4a53
84 changed files with 11230 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Task extends Model
{
use HasFactory;
protected $fillable = ['user_id', 'name'];
}