How to see laravel without php Artisan

How can I see a performance Laravelwithout the artisan team CLI. I do not CLIhave my hosting provider, I only have access to FTP, to run LaravelI need to use this command in CLI:

php artisan serve --port=8080 --host=0.0.0.0

How can I get an idea without this command?

Thanks.

+3
source share
1 answer

php artisan serve not for use in production environments because it uses the PHP5 build on a web server. If you have a hosting provider, they will probably run Apache, and you can simply serve your application through Apache.

php.net, -.

PHP , .

- . , . -. .

+5

Source: https://habr.com/ru/post/1625729/


All Articles