Files
riksdagen-app/app/Models/DokMotforslag.php

16 lines
300 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class DokMotforslag extends Model
{
protected $table = 'dokmotforslag';
public $timestamps = false;
public function dokument()
{
return $this->belongsTo(Dokument::class, 'hangar_id', 'hangar_id');
}
}