| 12345678910111213141516 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- use Illuminate\Database\Eloquent\Relations\BelongsTo;
- class Message extends Model
- {
- protected $fillable = ['text', 'thinking', 'from'];
- public function chat(): BelongsTo
- {
- return $this->belongsTo(Chat::class);
- }
- }
|