So I've tried to change max_execution_time=1800 in php.ini but it's the same error in my "view"
in my web.php
Route::get('/article', array('as' => 'accueil', function()
{
$categories = \App\Categorie::latest()->get();
$articles = \App\Article::select('id', 'title', 'intro_text')->orderBy('created_at', 'desc')->get();
return view('accueil', ['categories' => $categories, 'articles' => $articles, 'actif' => 0]);
}));
I think that's a problem of return view