Improved first test

This commit is contained in:
PovilasKorop
2021-11-16 07:25:20 +02:00
parent 8c860fbac5
commit 37db8803e2
3 changed files with 7 additions and 7 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Morningnews extends Model
{
use HasFactory;
protected $fillable = ['title', 'news_text'];
}