I think there is used config('app.name'), so change it in your .env file
https://github.com/laravel/laravel/blob/8.x/config/app.php#L16
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
I am using Laravel 7 and make Auth command also here. but now I need change my app name of the each page title from Laravel to cms. then I change app.blade.php file app name as cms. but not successful here. how could I change these
@flex in your .env file the first line:
APP_NAME=Cms
if the name contains any space:
APP_NAME="Cms something"
Then where ever you want the app name
{{ config('app.name', 'Cms') }}
and run php artisan config:clear from your terminal
Please or to participate in this conversation.