Painter.php 300 B

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