Message.php 310 B

12345678910111213141516
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. use Illuminate\Database\Eloquent\Relations\BelongsTo;
  5. class Message extends Model
  6. {
  7. protected $fillable = ['text', 'thinking', 'from'];
  8. public function chat(): BelongsTo
  9. {
  10. return $this->belongsTo(Chat::class);
  11. }
  12. }