ГW
Size: a a a
ГW
ГW
AH
AH
thumbnail = null
- так и должно быть?ГW
ГW
AH
ГW
ГW
AH
ГW
ГW
ГW
ГW
AH
ГW
AH
protected $fillable = ['first_name', 'last_name'];
protected $appends = ['full_name'];
protected function getFullNameAttribute()
{
return $this->first_name . ' ' . $this->last_name;
}
ГW
AH
$user = User::find(1);
$user->load('contributors');
return response->json(compact('user'));
ГW