Server IP : 108.163.255.210 / Your IP : 3.21.105.46 Web Server : Apache System : Linux blossom.urlnameserver.com 3.10.0-1160.80.1.el7.x86_64 #1 SMP Tue Nov 8 15:48:59 UTC 2022 x86_64 User : ( 1172) PHP Version : 7.2.34 Disable Function : eval,escapeshellarg,proc_close,proc_get_status,proc_nice,proc_open,symlink,system,pcntl_exec,getrusage,chown,chgp,closelog,openlog,syslog,define_syslog_variables,php_ini_loaded_file,getservbyname,getservbyport,posix_getgid,posix_getgrgid,proc_terminate,pfsockopen,apache_child_terminate,posix_mkfifo,posix_setpgid,posix_setuid,hypot,pg_host,pos,posix_access,posix_getcwd,posix_getservbyname,myshellexec,getpid,posix_getsid,posix_isatty,posix_kill,posix_mknod,posix_setgid,posix_setsid,posix_setuid,posix_times,posix_uname,ps_fill,posix_getpwuid,global,ini_restore,zip_open,zip_read,rar_open,bzopen,bzread,bzwrite,apache_get_modules,apache_get_version,phpversionphpinfo,php_ini_scanned_files,get_current_user,disk_total_space,diskfreespace,leak,imap_list,hypo,filedump,safe_mode,getmygid,apache_getenv,apache_setenv,bzread,bzwrite,bzopen,phpini,higlight_file,dos_conv,get_cwd,er_log,cmd,e_name,vdir,get_dir,only_read,ftok,ftpexec,posix_getpwnam,mysql_list_dbs,disk_free_space,session_save_path,confirm_phpdoc_compiled,zip_entry_rea,php_u,psockopen,crack_opendict,crack_getlastmessage,crack_closedict,crack_check,fpassthru,posix_get_last_error,posix_getlogin,posix_getgroups,posix_strerror,posix_getrlimit,posix_getpgrp,posix_getgrnam,pos,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/unilinki/www/wpc/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('/', 'App\Http\Controllers\HomeController@index')->name('home'); Route::get('/signup', 'App\Http\Controllers\HomeController@signup')->name('signup'); Route::get('/subscribe-payumoney', 'App\Http\Controllers\HomeController@subscribepayumoney')->name('subscribe.payumoney'); Route::get('/forgot-password', 'App\Http\Controllers\HomeController@forgot_password')->name('forgot_password'); Route::get('/resend-password', 'App\Http\Controllers\HomeController@resend_password')->name('resend_password'); Route::post('/register', 'App\Http\Controllers\HomeController@register')->name('register'); Route::post('/forgotPassword', 'App\Http\Controllers\HomeController@forgotPassword')->name('forgotPassword'); Route::get('/reset-password', 'App\Http\Controllers\HomeController@resetPassword')->name('resetPassword'); Route::post('/changePassword', 'App\Http\Controllers\HomeController@changePassword')->name('changePassword'); Route::post('/activation', 'App\Http\Controllers\HomeController@activation')->name('activation'); Route::group(['prefix'=>'user', 'middleware'=>['web']], function(){ Route::get('/login', 'App\Http\Controllers\HomeController@login')->name('login'); Route::post('/secure/login', 'App\Http\Controllers\HomeController@secure_login')->name('secure_login'); Route::group([], function(){ Route::get('dashboard', 'App\Http\Controllers\DashboardController@dashboard')->name('auth.dashboard'); Route::post('dashboard/next', 'App\Http\Controllers\DashboardController@photos_next')->name('auth.photos_next'); Route::get('photo/detail/{id}', 'App\Http\Controllers\DashboardController@photos_detail')->name('auth.photos_detail'); Route::get('interest', 'App\Http\Controllers\DashboardController@interest')->name('auth.interest'); Route::post('photo-interests', 'App\Http\Controllers\DashboardController@photo_interests')->name('photo_interests'); Route::get('userHeader', 'App\Http\Controllers\DashboardController@userHeader')->name('userHeader'); Route::get('profile/{id}', 'App\Http\Controllers\DashboardController@profile')->name('profile'); Route::get('top-photographer', 'App\Http\Controllers\DashboardController@top_photographer')->name('top_photographer'); Route::post('like-photo', 'App\Http\Controllers\DashboardController@like_photo')->name('like_photo'); Route::post('bookmark-photo', 'App\Http\Controllers\DashboardController@bookmark_photo')->name('bookmark_photo'); // Blogs Route::get('blogs', 'App\Http\Controllers\DashboardController@blogs')->name('blogs'); Route::get('blogs/detail/{id}', 'App\Http\Controllers\DashboardController@blogs_detail')->name('blogs_detail'); Route::post('like-blog', 'App\Http\Controllers\DashboardController@blog_like')->name('blog_like'); Route::post('comment-photo', 'App\Http\Controllers\DashboardController@comment_photo')->name('comment_photo'); Route::get('delete-comment-photo/{id}', 'App\Http\Controllers\DashboardController@delete_photo_comment')->name('delete_photo_comment'); Route::get('notification', 'App\Http\Controllers\DashboardController@notification')->name('notification'); Route::get('follow/{id}', 'App\Http\Controllers\DashboardController@follow')->name('follow'); Route::get('wpc-status', 'App\Http\Controllers\ProfileController@wpc_status')->name('wpc_status'); Route::get('quota-detils', 'App\Http\Controllers\ProfileController@quota_detils')->name('quota_detils'); Route::get('account', 'App\Http\Controllers\ProfileController@account')->name('account'); Route::post('account-info-store', 'App\Http\Controllers\ProfileController@account_info_store')->name('account_info_store'); Route::get('contact-info', 'App\Http\Controllers\ProfileController@contact_info')->name('contact_info'); Route::post('contact-info-store', 'App\Http\Controllers\ProfileController@contact_info_store')->name('contact_info_store'); Route::get('payment-info', 'App\Http\Controllers\ProfileController@payment_info')->name('payment_info'); Route::post('payment-info-store', 'App\Http\Controllers\ProfileController@payment_info_store')->name('payment_info_store'); Route::get('payment-status', 'App\Http\Controllers\ProfileController@payment_status')->name('payment_status'); Route::get('my-ads', 'App\Http\Controllers\ProfileController@my_ads')->name('my_ads'); Route::get('privacy-options', 'App\Http\Controllers\ProfileController@privacy_options')->name('privacy_options'); Route::post('add/tag', 'App\Http\Controllers\DashboardController@add_tag')->name('auth.add_tag'); Route::post('delete/tag', 'App\Http\Controllers\DashboardController@delete_tag')->name('auth.delete_tag'); Route::post('add/album', 'App\Http\Controllers\DashboardController@add_album')->name('auth.add_album'); Route::post('delete/album', 'App\Http\Controllers\DashboardController@delete_album')->name('auth.delete_album'); Route::post('add/review', 'App\Http\Controllers\DashboardController@add_review')->name('auth.add_review'); Route::get('competitions', 'App\Http\Controllers\DashboardController@competitions')->name('auth.competitions'); Route::get('competition-details/{id}', 'App\Http\Controllers\DashboardController@competition_detail')->name('auth.competition_detail'); Route::post('vote', 'App\Http\Controllers\DashboardController@vote')->name('vote'); Route::get('add-photos', 'App\Http\Controllers\DashboardController@add_photos')->name('add_photos'); Route::post('submit-photos', 'App\Http\Controllers\DashboardController@submit_photos')->name('submit_photos'); Route::get('upgrade', 'App\Http\Controllers\SubscriptionController@upgrade')->name('upgrade'); Route::post('subscribe', 'App\Http\Controllers\SubscriptionController@subscribe')->name('subscribe'); Route::post('/subscribe-process', 'App\Http\Controllers\SubscriptionController@SubscribProcess')->name('SubscribProcess'); Route::post('/subscribe-cancel', 'App\Http\Controllers\SubscriptionController@SubscribeCancel')->name('SubscribeCancel'); Route::post('/subscribe-response', 'App\Http\Controllers\SubscriptionController@SubscribeResponse')->name('SubscribeResponse'); Route::get('logout', 'App\Http\Controllers\ProfileController@logout')->name('logout'); }); });