Unable to change laravel application name

I use php artisan app:name L&K Biomedicsto set the name of the application. But I get an error message,

'L' is not recognized as an internal or external command,
operable program or batch file.

I am new to Laravel. What am I doing wrong here.

enter image description here

And is there any way to cancel this command? I mean, if he changed the name to L & , how can I change it?

+4
source share
5 answers

You must remove spaces &from the application name. The name application is basically namespace .

+4
source

You need to learn a naming standard whose name cannot include &

+5
source

& , :

php artisan app:name KLBiomedicsEnterprices

, .

+2

Laravel Docs. , .

artisan: php artisan app:name KLBiomedicsEnterprices , KLBiomedicsEnterprices.

+2

: php artisan app: name Yourapplicationname

(: )

config, app.php, 'name' = > env ('APP_NAME', 'Yourapplicationname'),

: "php artisan " (locahost: 8000 ..),

NB:

0
source

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


All Articles