Task 5 - old values staying in the form

This commit is contained in:
PovilasKorop
2021-11-29 13:41:46 +02:00
parent 7d3ccdd6ec
commit b7eaace432
7 changed files with 103 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 Team extends Model
{
use HasFactory;
protected $fillable = ['name'];
}