Painting.php 315 B

1234567891011121314151617
  1. <?php
  2. namespace Tests\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Painting extends Model
  5. {
  6. protected $table = 'test_paintings';
  7. protected $fillable = ['title', 'body', 'completed_at'];
  8. public function painter()
  9. {
  10. return $this->belongsTo(Painter::class, 'painter_id');
  11. }
  12. }