for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Location extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'name', 'site_id'
];
public $timestamps = false;
* Get the site for the location
public function site()
return $this->belongsTo('App\Site');
}