8ea540a88c
- use PHP7 null coalesce operator instead of laravel optional method - change Breadcrumbs::register method to Bredcrumbs::for method - composer updates
27 lines
696 B
PHP
27 lines
696 B
PHP
<?php
|
|
namespace App\Models;
|
|
|
|
use App\Models\Dataset;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class DatasetIdentifier extends Model
|
|
{
|
|
use HasFactory;
|
|
protected $table = 'dataset_identifiers';
|
|
protected $guarded = array();
|
|
public $timestamps = true;
|
|
|
|
// See the array called $touches? This is where you put all the relationships you want to get
|
|
// updated_at as soon as this Model is updated
|
|
protected $touches = ['dataset'];
|
|
|
|
/**
|
|
* The dataset that belong to the DocumentIdentifier.
|
|
*/
|
|
public function dataset()
|
|
{
|
|
return $this->belongsTo(Dataset::class, 'dataset_id', 'id');
|
|
}
|
|
}
|