-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCall.php
23 lines (19 loc) · 888 Bytes
/
Call.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
if( !defined("webStart") ) { exit(0); }
require_once('Route.php');
Route::get('/','homeController@page');
Route::get('/home','homeController@page');
//Route::get('/home/{id}','pagesController@home', ['id'=>'/[0-9]/']);
Route::get('/history','historyController@page');
Route::get('/importantplace','importantplaceController@page');
Route::get('/gallery','galleryController@page');
Route::get('/guestbook','guestbookController@page');
Route::get('/contact','contactController@page');
Route::get('/map','mapController@page');
Route::get('/admin','adminController@index');
Route::get('/admin/history','adminController@history');
Route::get('/admin/importantplace','adminController@importantplace');
Route::get('/admin/logout','adminController@logout');
Route::post('/admin/login','adminController@login');
Route::post('/admin/history','adminController@saveHistory');
Route::error();