Ejemplo n.º 1
0
<?php

/*
|--------------------------------------------------------------------------
| Routes File
|--------------------------------------------------------------------------
|
| Here is where you will register all of the routes in an application.
| It's a breeze. Simply tell Laravel the URIs it should respond to
| and give it the controller to call when that URI is requested.
|
*/
Route::get('/', function () {
    $post = \App\post::OrderBy('id', 'ASC')->paginate(9);
    $event = \App\event::OrderBy('id', 'ASC')->paginate(9);
    $user = \App\template::OrderBy('id', 'ASC')->paginate(6);
    return view('welcome', compact('post', 'event', 'user'));
});
Route::get('/load', function () {
    return view('load');
});
/*
|--------------------------------------------------------------------------
| Application Routes
|--------------------------------------------------------------------------
|
| This route group applies the "web" middleware group to every route
| it contains. The "web" middleware group is defined in your HTTP
| kernel and includes session state, CSRF protection, and more.
|
*/