I have a HolidaysModel class that has the following relationship
public function user() {
return $this->belongsTo('MolInterno\Users\UsersModel', 'id_user', 'id');
}
In the Holidays driver I do:
public function index() {
$holidays = $this->holidaysRepo->search(array(), false, 'created_at', 'DES');
return view('admin.holiday.index', compact('holidays'));
}
In the view I do:
@foreach($holidays as $holiday)
<tr class="text-center">
<td> {{$holiday->user->first_name}} </td>
<td>{{date('d-m-Y', strtotime($holiday->start_date))}}</td>
<td>{{date('d-m-Y',strtotime($holiday->end_date))}}</td>
</tr>
@endforeach
The problem is given by $holiday->user->first_name
(Trying to get property of non-object), if I delete this it goes. If I do $holiday->user['first_name']
also go.
If I do {{getType($holiday->user)}}
, it results in OBJECT.
And this {{$holiday->user}}
returns me:
{"id":45,"first_name":"Maria ","last_name":"Lopez","email":"maria@lopez.net ","deleted_at":null,"created_at":"2017-02-03 09:00:48","updated_at":"2017-02-03 09:00:48"}
I do not understand why $holiday->user->first_name
is not, being this an object and having to access as an array $holiday->user['first_name']