Viewing: frontend.php
<?php /////////////////////// Home Routes Start ///////////////////////////// Route::get('/', 'Home\HomeController@index')->name('home'); Route::post('/get-location-and-developer-by-city-id', 'Home\HomeController@getLocationsAndDevelopersByCityId')->name('getLocationDeveloperByCityId'); Route::post('/get-location-by-city-id', 'Home\HomeController@getLocationsByCityId')->name('getLocationByCityId'); Route::post('/get-city-by-country-id', 'Home\HomeController@getCityByCountryId')->name('getCityByCountryId'); Route::post('/search-buy-property', 'Home\HomeController@searchSaleProperty')->name('searchSaleProperty'); Route::post('/search-rent-property', 'Home\HomeController@searchRentProperty')->name('searchRentProperty'); Route::post('/search-uae-property', 'Home\HomeController@searchUaeProperty')->name('searchUaeProperty'); /////////////////////// Home Routes End ///////////////////////////// /////////////////////// About Us Routes Start ///////////////////////////// Route::get('/about-us', 'AboutUs\AboutUsController@index')->name('aboutUs'); Route::get('/ceo-message', 'AboutUs\AboutUsController@ceo_message')->name('ceo_message'); Route::get('/vission-mission', 'AboutUs\AboutUsController@vissionMission')->name('vission_mission'); Route::get('/property-managements', 'AboutUs\AboutUsController@propertyManagement')->name('propertyManagements'); Route::get('/investment-opprotunities', 'AboutUs\AboutUsController@investmentOpprtunities')->name('investmentOpportunities'); Route::get('/our-team', 'AboutUs\AboutUsController@our_team')->name('our_team'); Route::get('/digital-marketing', 'AboutUs\AboutUsController@advertiseWithUs')->name('advertisewithus'); /////////////////////// About Us Routes End ///////////////////////////// /////////////////////// Contact Us Routes Start ///////////////////////////// Route::get('/contact-us', 'ContactUs\ContactUsController@index')->name('contactUs'); Route::post('/addContactUs', 'ContactUs\ContactUsController@store')->name('addContactUs'); /////////////////////// Contact Us Routes End ///////////////////////////// /////////////////////// properties Routes Start ///////////////////////////// //...Property Main Pages...// Route::get('/propertiesList', 'Properties\PropertiesController@getAll')->name('propertiesList'); Route::get('/propertyDetail/{id}', 'Properties\PropertiesController@getDetail')->name('propertyDetails'); //...Searching...// Route::post('/search', 'Properties\PropertiesController@search')->name('search'); Route::get('/search', 'Properties\PropertiesController@search')->name('search'); Route::get('/property', 'Properties\PropertiesController@pakProperties')->name('pakProperties'); Route::get('/property-management', 'Properties\PropertiesController@propertyManagement')->name('propertyManagement'); //...International Properties...// Route::get('/international-properties', 'Properties\PropertiesController@internationalProperties')->name('internationalProperties'); Route::get('/international-properties/{slug}', 'Properties\PropertiesController@showInternationalProperties')->name('showInternationalProperties'); //...Menus Buy,Rent...// Route::get('/buy-property/{id}', 'Properties\PropertiesController@buySaleProperty')->name('buySaleProperty'); Route::get('/rent-property/{id}', 'Properties\PropertiesController@buyRentProperty')->name('buyRentProperty'); //...Footer pages...// Route::get('/exclusive-property', 'Properties\PropertiesController@exclusiveProperty')->name('exclusiveProperty'); Route::get('/featured-property', 'Properties\PropertiesController@featuredProperty')->name('featuredProperty'); Route::get('/buy-property', 'Properties\PropertiesController@buyProperty')->name('buyProperty'); Route::get('/sell-property', 'Properties\PropertiesController@sellProperty')->name('sellProperty'); Route::get('/rent-property', 'Properties\PropertiesController@rentProperty')->name('rentProperty'); //...Static Pages in Menus...// Route::get('/buying-residential-property', 'Properties\PropertiesController@buyingResidentialProperty')->name('buyingResidentialProperty'); Route::get('/selling-residential-property', 'Properties\PropertiesController@sellingResidentialProperty')->name('sellingResidentialProperty'); Route::get('/renting-residential-property', 'Properties\PropertiesController@rentingResidentialProperty')->name('rentingResidentialProperty'); Route::get('/residential-buyer-checklist', 'Properties\PropertiesController@residentialBuyerChecklist')->name('residentialBuyerChecklist'); Route::get('/residential-seller-checklist', 'Properties\PropertiesController@residentialSellerChecklist')->name('residentialSellerChecklist'); Route::get('/residential-tenant-checklist', 'Properties\PropertiesController@residentialRentingChecklist')->name('residentialRentingChecklist'); //...Selling Client Properties list...// Route::get('/list-your-property', 'Properties\PropertiesController@sellingClientProperties')->name('sellingClientProperties'); Route::post('/client-property/add', 'Properties\PropertiesController@addSellingClientProperties')->name('addSellingClientProperties'); Route::post('/send-inquiry', 'AboutUs\AboutUsController@sendInquiry')->name('sendInquiry'); // //...Get Cities and locations by countries...// // Route::get('/list-your-property', 'Properties\PropertiesController@sellingClientProperties')->name('sellingClientProperties'); // Route::post('/client-property/add', 'Properties\PropertiesController@addSellingClientProperties')->name('addSellingClientProperties'); //...Get FAQS...// Route::get('/faqs', 'Properties\PropertiesController@faqs')->name('faqs'); //...Get Cities and Countries...// Route::post('/get-cities', 'Properties\PropertiesController@getCitiesByCountries')->name('getCities'); Route::get('/get-sub-categories', 'Properties\PropertiesController@getSubCategories')->name('getSubCategories'); Route::post('/get-locations', 'Properties\PropertiesController@getLocationByCities')->name('getLocations'); Route::post('/get-state-cities', 'Properties\PropertiesController@getCityByStates')->name('getCityByStates'); /////////////////////// properties Routes End ///////////////////////////// /////////////////////// Enquiry routes agent ///////////////////////////// Route::post('/enquiry', 'Properties\PropertiesController@addEnquiry')->name('addEnquiry'); /////////////////////// Enquiry routes agent ///////////////////////////// /////////////////////// Projects Routes Start ///////////////////////////// Route::get('/projects-list', 'Projects\ProjectsController@index')->name('projectsList'); Route::get('/pak-projects', 'Projects\ProjectsController@pakProjects')->name('pakProjects'); Route::get('/uae-projects', 'Projects\ProjectsController@uaeProjects')->name('uaeProjects'); Route::post('/searchProjects', 'Projects\ProjectsController@searchProjects')->name('searchProjects'); Route::get('/projects-detail/{id}', 'Projects\ProjectsController@projectDetail')->name('projectDetail'); /////////////////////// Projects Routes End ///////////////////////////// /////////////////////// Captcha Routes End ///////////////////////////// Route::get('/refreshcaptcha', 'ContactUs\ContactUsController@refreshCaptcha')->name('refreshCaptcha'); ////////////////////// Captcha Routes End ////////////////////////////// ////////////////////// newsletter Routes End ////////////////////////////// Route::post('/addSubsriber', 'Newsletters\NewslettersController@store')->name('addSubsriber'); ////////////////////// newletter Routes End ////////////////////////////// Route::get('/agencies-list', 'Agency\AgencyController@show')->name('getAllAgencies');
Return