29 lines
484 B
PHP
29 lines
484 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class DokBilaga extends Model
|
|
{
|
|
protected $table = 'dokbilaga';
|
|
|
|
public $timestamps = false;
|
|
|
|
protected $fillable = [
|
|
'hangar_id',
|
|
'dok_id',
|
|
'filnamn',
|
|
'titel',
|
|
'subtitel',
|
|
'filstorlek',
|
|
'filtyp',
|
|
'fil_url',
|
|
];
|
|
|
|
public function dokument()
|
|
{
|
|
return $this->belongsTo(Dokument::class, 'hangar_id', 'hangar_id');
|
|
}
|
|
}
|