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

View file

@ -1,22 +0,0 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Client 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'];
}