You can access through your command prompt or your terminal.
for example-
cd c:/xampp/localhost/project/resources
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
I need to access to my view folder and files when hosting my Laravel app, so far i have access to the index file by doing subdomain/public but i get error 404, so i need to access the views in ressources folder.
This is my route :
<?php
/*
|--------------------------------------------------------------------------
| 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('/support', 'DemoController@index');
Route::get('/support/postdata', 'DemoController@postdata')->name('support.postdata');
Route::get('/support/requete', 'DemoController@requete')->name('support.requete');
Route::get('/support/getetat', 'DemoController@getetat')->name('support.getetat');
Route::post('/support/checklogin', 'DemoController@checklogin');
Route::get('support/successlogin', 'DemoController@successlogin');
Route::get('support/logout', 'DemoController@logout');
Route::get('/admin', 'DemoController@successlogin');
Route::get('admin/getRequete', 'DemoController@getRequete')->name('admin.getRequete');
Route::get('admin/reponse', 'DemoController@reponse')->name('admin.reponse');
Route::get('admin/fetchdata', 'DemoController@fetchdata')->name('admin.fetchdata');
Please or to participate in this conversation.