<?php namespace App; use Illuminate\Database\Eloquent\Model; class EquipmentForm extends Model { public function equipment() { return $this->belongsTo(Equipment::class)->withTrashed(); } public function form() { return $this->belongsTo(Form::class)->withTrashed(); } }