PHP
13
Вклад в тег
<html>
<head>
<title>
@yield('title', 'Laravel')
</title>
<!-- Styles -->
<link href="{{ asset('public/css/app.css') }}" rel="stylesheet">
</head>
<body>
<div id="app">
<div class="navbar">
...
</div>
<div class="container">
@yield('content')
</div>
</div>
</body>
</html>
@extends('layouts.app')
@section('title', 'Products')
@section('content')
@foreach($products as $product)
{{ $product }}
@endforeach
@endsection
$user = User::find($id);
$posts = $user->posts; // Если есть связь от одного пользователя.
return response()->json($posts->sortByDesc('created_at')); // и вызвать сортировку коллекции.
$posts = Post::where('user_id', '=', $user_id)
->orderBy('created_at', 'desc')
->get();
return response()->json($posts);
composer dump-autoload
раз в ошибке указано что класса нет./**
* Seed the application's database.
*
* @return void
*/
public function run()
{
$this->call(UsersTableSeeder::class);
}