I have the project laravel on a mac with OSX the captain with php artisan . The project runs without problem, but for personal reasons I want to use the apache of xampp instead of artisan server then when I try to load the index.blade.php instead of loading the view this appears.
Perform the same procedure but on a PC with Windows 7 and the XAMPP load without any problem my App is not for what reason on the Mac does not run any ideas?
the url I'm trying to access is
the route.php file is as follows:
<?php
/*
*/
Route::get('/', function () {
return view('welcome');
});
/*
Route::get('crearusuario',function(){
return "URL crearusuarioasdadasd";
});
*/
//carpeta dentro de VISTAS almacen
Route::resource('almacen/categoria','CategoriaController');
The funny thing is that when I try to simply access localhost with the xampp instead of loading the welcome from laravel the following appears: