jonnybarnes.uk/app/MicropubClient.php

23 lines
370 B
PHP
Raw Normal View History

2016-05-19 15:01:28 +01:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class MicropubClient extends Model
2016-05-19 15:01:28 +01:00
{
/**
* 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'];
}