mirror of
https://github.com/serialexperiments0815/Dilomarkt---Digitaler-Lokalmarkt.git
synced 2026-07-12 15:32:19 +00:00
9 lines
No EOL
188 B
PHP
9 lines
No EOL
188 B
PHP
<?php
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Message extends Model
|
|
{
|
|
protected $fillable = ['product_id', 'provider_id', 'buyer_id', 'sender', 'body'];
|
|
} |