for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Siak\Tontine\Model;
class Profile extends Base
{
use Traits\HasProperty;
Siak\Tontine\Model\Traits\HasProperty
Siak\Tontine\Model\Profile
$property
$content
/**
* Indicates if the model should be timestamped.
*
* @var bool
*/
public $timestamps = false;
* The attributes that are mass assignable.
* @var array
protected $fillable = [
'address',
'city',
'country_code',
];
public function user()
return $this->belongsTo(User::class);
}