Use a less generic model name than Client

This commit is contained in:
Jonny Barnes 2016-05-29 14:21:46 +01:00
parent 4bb454c545
commit 12c91eab70
3 changed files with 7 additions and 7 deletions

22
app/MicropubClient.php Normal file
View file

@ -0,0 +1,22 @@
<?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'];
}