38 lines
747 B
PHP
38 lines
747 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
|
|
class MicropubClient extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
/**
|
|
* The table associated with the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'clients';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = ['client_url', 'client_name'];
|
|
|
|
/**
|
|
* Define the relationship with notes.
|
|
*
|
|
* @return HasMany
|
|
*/
|
|
public function notes(): HasMany
|
|
{
|
|
return $this->hasMany('App\Models\Note', 'client_id', 'client_url');
|
|
}
|
|
}
|