16 lines
310 B
PHP
16 lines
310 B
PHP
<?php
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class DokUtskottsforslag extends Model
|
|
{
|
|
protected $table = 'dokutskottsforslag';
|
|
public $timestamps = false;
|
|
|
|
public function dokument()
|
|
{
|
|
return $this->belongsTo(Dokument::class, 'hangar_id', 'hangar_id');
|
|
}
|
|
}
|