public function index(Request $request)
{
$text = Text::orderBy('id','DESC')->paginate(5);
return view('text.index',compact('texts'))
->with('i', ($request->input('page', 1) - 1) * 5);
}
Text
?User
, каждый Text
имеет одного User'a
, и нужно вывести для каждого екземпляра Text
свойство User'a
- его имя. public function text()
{
return $this->hasOne('App\Text', 'user_id', 'id');
}
public function user()
{
return $this->belongsTo('App\User');
}
<?=$text->user->name ?>