Task 3 - update and delete old file

This commit is contained in:
PovilasKorop
2021-12-06 07:58:56 +02:00
parent 669b1de915
commit c72be05cea
6 changed files with 110 additions and 3 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class House extends Model
{
use HasFactory;
protected $fillable = ['name', 'photo'];
}