Sure.
open up the web.php file in the routes directory and do the following.
Route::get('uri-name', function() { your php script goes here. }
change uri-name to what you want the uri to be and copy and paste what is in you script inside the closure. This would be the simplest way of doing it. However this isn't the best way of going about things and you should look into the laravel docs more. Your php script should probably be a controller.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community