The APP_URL is .env file environment variable for your application base path such as your domain http://example.com or http://localhost/{project name}/public
if you should store your front page picture public/images folder then call url('images/{picture name}')
Sep 26, 2017
2
Level 27
APP_URL
What is APP_URL?
.env
APP_NAME=Laravel
APP_ENV=local
APP_KEY=base64:w4+St3llrDOPqwLDu0eQ3VvBpScSphhFNMPybiF/yZ8=
APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_URL=http://localhost/victoryeshop/vito
config/app.php
'url' => env('APP_URL', 'http://localhost/victoryeshop/vito')
vito is the laravel framework name. I wonder if I set it correctly since I have my ecommerce front page picture unappearing.
Please or to participate in this conversation.