mirror of
https://github.com/robonen/metr.git
synced 2026-03-20 10:54:41 +00:00
22 lines
355 B
PHP
22 lines
355 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class OfferPhoto extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array<int, string>
|
|
*/
|
|
protected $fillable = [
|
|
'offer_id',
|
|
'file',
|
|
];
|
|
}
|