Failed to save the file to the "xx" directory.
Failed to save the file to the "ll" directory.
Failed to save the file to the "mm" directory.
Failed to save the file to the "wp" directory.
Server IP : 66.29.132.124 / Your IP : 18.220.255.227 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wavevlvu/book24.ng/routes/ |
Upload File : |
<?php use Illuminate\Support\Facades\Route; /* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | Here is where you can register web routes for your application. These | routes are loaded by the RouteServiceProvider within a group which | contains the "web" middleware group. Now create something great! | */ Route::get('/intro','LandingpageController@index'); Route::get('/', 'HomeController@index'); Route::get('/home', 'HomeController@index')->name('home'); Route::post('/install/check-db', 'HomeController@checkConnectDatabase'); // Social Login Route::get('social-login/{provider}', 'Auth\LoginController@socialLogin'); Route::get('social-callback/{provider}', 'Auth\LoginController@socialCallBack'); // Logs Route::get(config('admin.admin_route_prefix').'/logs', '\Rap2hpoutre\LaravelLogViewer\LogViewerController@index')->middleware(['auth', 'dashboard','system_log_view'])->name('admin.logs'); Route::get('/install','InstallerController@redirectToRequirement')->name('LaravelInstaller::welcome'); Route::get('/install/environment','InstallerController@redirectToWizard')->name('LaravelInstaller::environment'); Route::view('/flights/search', "flights.index");