示例#1
0
<?php

/*
|--------------------------------------------------------------------------
| Application Routes
|--------------------------------------------------------------------------
|
| Here is where you can register all of the routes for 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 () {
    return view('welcome');
});
Route::get('Products/Create', 'ProductsController@create');
ROute::post('Products/Create', 'ProductsController@store');
示例#2
0
|--------------------------------------------------------------------------
|
| Here is where you can register all of the routes for 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('/', 'HomeController@index');
Route::get('article/{slug}', 'ArticleController@index');
Route::get('sekolah/{jenjang}', 'DaftarSekolahController@index');
Route::get('bandingkan', 'BandingkanController@index');
Route::get('event', 'EventController@index');
Route::get('event/{id}', 'EventController@tampil');
Route::get('rekomendasi', 'RekomendasiController@index');
Route::get('profil/{id}', 'ProfilController@index');
ROute::post('pencarian', 'PencarianController@index');
Route::get('tentang', 'FooterController@tentang');
Route::get('kebijakan', 'FooterController@kebijakan');
Route::get('syarat', 'FooterController@syarat');
Route::get('dashboard/admin', 'DashboardController@index');
Route::get('dashboard/sekolah', 'SekolahController@index');
Route::get('dashboard/sekolah/{parameter}', 'SekolahController@parameter');
Route::post('dashboard/sekolah/{parameter}', 'SekolahController@parameter');
Route::get('dashboard/sekolah/{parameter}/{id}', 'SekolahController@parameter');
Route::post('dashboard/sekolah/{parameter}/{id}', 'SekolahController@parameter');
Route::post('BandingProses', 'BandingkanController@banding');
// Authentication routes...
Route::get('auth/login', 'Auth\\AuthController@getLogin');
Route::post('auth/login', 'Auth\\AuthController@postLogin');
Route::get('auth/logout', 'Auth\\AuthController@getLogout');
// Registration routes...