PATH:
home
/
lab2454c
/
westernclear.net
/
routes
<?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('/', 'HomeController@showHome')->name('home'); Route::get('home', 'HomeController@showHome'); Auth::routes([ 'register' => false, // Registration Routes... 'verify' => false, // Email Verification Routes... ]); Route::get('register', 'ApplicationController@showApplicationForm')->name('showApplicationForm'); Route::post('apply', 'ApplicationController@apply')->name('apply'); Route::post('payment', 'ApplicationController@payment')->name('payment'); Route::post('contact/save', 'SiteController@saveContactDetail')->name('saveContactDetail'); Route::post('subscription/save', 'SiteController@saveSubscription')->name('saveSubscription'); Route::get('dashboard', 'HomeController@dashboard')->name('dashboard'); // Route for Show Change Password form and change user Password Route::get('changePassword', 'HomeController@showChangePassword')->name('showChangePassword'); Route::post('changePassword', 'HomeController@changePassword')->name('changeDefaultPassword'); Route::get('kyc-form', 'SiteController@showKycForm')->name('showKycForm'); Route::post('kyc-form/submit', 'SiteController@kycFormSubmit')->name('kycFormSubmit'); Route::prefix('admin')->group(function () { Route::get('', 'Admin\DashboardController@dashboard')->middleware('auth:admin')->name('adminHome'); Route::namespace('Admin')->group(function () { Route::get('login', 'LoginController@showLoginForm')->name('admin.login'); Route::post('login', 'LoginController@login'); Route::post('logout', 'LoginController@logout')->name('admin.logout'); Route::get('changePassword', 'PasswordController@showChangePassword')->name('admin.showChangePassword'); Route::post('changePassword', 'PasswordController@changePassword')->name('admin.changeDefaultPassword'); Route::get('admin-profile', 'AdminUserController@showAdminProfile')->name('showAdminProfile'); Route::post('admin-profile', 'AdminUserController@changeAdminProfile')->name('changeAdminProfile'); Route::resource('siteSetting', 'SiteSettingController', [ 'names' => 'siteSetting', 'except' => [ 'show', 'create', 'store' ] ]); Route::resource('page', 'PageController', [ 'names' => 'page', 'except' => [ 'show', ] ]); Route::resource('socialLink', 'SocialLinkController', [ 'names' => 'socialLink', 'except' => [ 'show', ] ]); Route::resource('homeBanner', 'HomeBannerController', [ 'names' => 'homeBanner', 'except' => [ 'show', ] ]); Route::get('menu', 'DashboardController@menu')->name('menu'); Route::get('contacts', 'DashboardController@contacts')->name('contacts'); Route::delete('contact/{id}', 'DashboardController@deleteContact')->name('deleteContact'); Route::delete('deleteContacts', 'DashboardController@deleteContacts')->name('deleteContacts'); Route::get('subscriptions', 'DashboardController@subscriptions')->name('subscriptions'); Route::get('users/list', 'DashboardController@userList')->name('userList'); Route::post('{user}/status', 'DashboardController@userStatus')->name('userStatus'); Route::get('{user}/details', 'DashboardController@userDetails')->name('userDetails'); Route::resource('gallery', 'GalleryController', [ 'names' => 'gallery', 'except' => [ 'show', 'edit', 'update' ] ]); //Route::get("userExport", "DashboardController@userExport")->name("userExport"); Route::resource('linkSection', 'Home\LinkSectionController', [ 'names' => 'linkSection', 'except' => [ 'show', ] ]); Route::resource('goldstarSection', 'Home\GoldstarSectionController', [ 'names' => 'goldstarSection', 'except' => [ 'show', 'create', 'store', 'destroy' ] ]); Route::resource('unmatchSection', 'Home\UnmatchSectionController', [ 'names' => 'unmatchSection', 'except' => [ 'show', ] ]); Route::get('edit-unmatch', 'Home\UnmatchSectionController@textEdit')->name('unmatchText.edit'); Route::put('update-unmatch', 'Home\UnmatchSectionController@textUpdate')->name('unmatchText.update'); Route::resource('investmentSection', 'Home\InvestmentSectionController', [ 'names' => 'investmentSection', 'except' => [ 'show', ] ]); Route::get('edit-investment', 'Home\InvestmentSectionController@textEdit')->name('investmentText.edit'); Route::put('update-investment', 'Home\InvestmentSectionController@textUpdate')->name('investmentText.update'); Route::resource('otherInvestmentSection', 'Home\OtherInvestmentSectionController', [ 'names' => 'otherInvestmentSection', 'except' => [ 'show', 'create', 'store', 'destroy' ] ]); Route::resource('faq', 'FaqController', [ 'names' => 'faq', 'except' => [ 'show', ] ]); Route::resource('faqCategory', 'FaqCategoryController', [ 'names' => 'faqCategory', 'except' => [ 'show', ] ]); Route::resource('educationQuestion', 'EducationQuestionController', [ 'names' => 'educationQuestion', 'except' => [ 'show', ] ]); Route::get('edit-education', 'EducationQuestionController@textEdit')->name('educationText.edit'); Route::put('update-education', 'EducationQuestionController@textUpdate')->name('educationText.update'); Route::resource('educationCategory', 'EducationCategoryController', [ 'names' => 'educationCategory', 'except' => [ 'show', ] ]); Route::resource('leadership', 'LeadershipController', [ 'names' => 'leadership', 'except' => [ 'show', ] ]); Route::get('edit-about-content1', 'LeadershipController@content1Edit')->name('aboutContent1.edit'); Route::put('update-about-content1', 'LeadershipController@content1Update')->name('aboutContent1.update'); Route::put('update-about-content2', 'LeadershipController@content2Update')->name('aboutContent2.update'); Route::resource('form', 'FormController', [ 'names' => 'form', 'except' => [ 'show', ] ]); Route::get('edit-form-text', 'FormController@textEdit')->name('formText.edit'); Route::put('update-form-text', 'FormController@textUpdate')->name('formText.update'); Route::resource('formCategory', 'FormCategoryController', [ 'names' => 'formCategory', 'except' => [ 'show', ] ]); Route::resource('advisor', 'AdvisorController', [ 'names' => 'advisor', 'except' => [ 'show', 'index' ] ]); Route::resource('insight', 'InsightController', [ 'names' => 'insight', 'except' => [ 'show', ] ]); Route::get('edit-insight-text', 'InsightController@textEdit')->name('insightText.edit'); Route::put('update-insight-text', 'InsightController@textUpdate')->name('insightText.update'); Route::resource('invitationCode', 'InvitationCodeController', [ 'names' => 'invitationCode', 'except' => [ 'show', 'edit', 'update', 'create' ] ]); }); }); Route::get('faq', 'SiteController@showFaq')->name('showFaq'); Route::get('education', 'SiteController@showEducation')->name('showEducation'); Route::get('about', 'SiteController@showAbout')->name('showAbout'); Route::get('forms', 'SiteController@showForms')->name('showForms'); Route::get('insight', 'SiteController@showInsight')->name('showInsight'); Route::post('invitation/accept', 'SiteController@invitationAccept')->name('invitationAccept'); Route::get('{slug}', 'SiteController@showDynamicPages')->name('dynamicPage');
[-] web.php
[edit]
[+]
..
[-] wp-blog-header.php
[edit]
[-] channels.php
[edit]
[-] api.php
[edit]
[-] console.php
[edit]
[-] .htaccess
[edit]
[-] wp-cron.php
[edit]