belongsTo('App\Models\Flight'); } public function staff() { return $this->belongsTo('App\Models\Staff'); } public function __toString(): string { return "{$this->staff} {$this->flight}"; } }