1
0
mirror of https://github.com/robonen/metr.git synced 2026-03-20 10:54:41 +00:00

All models

This commit is contained in:
2022-05-26 11:20:47 +07:00
parent 3146fb1fd0
commit c4f98fdb58
14 changed files with 248 additions and 26 deletions

View File

@@ -0,0 +1,23 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Review extends Model
{
use HasFactory;
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'offer_id',
'user_id',
'comment',
'rating',
];
}