jonnybarnes.uk/app/MicropubClient.php

22 lines
370 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class MicropubClient extends Model
{
/**
* 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'];
}