Answers for "base url in laravel"

PHP
3

get app url in laravel

URL::to('/');
Posted by: Guest on June-27-2020
0

laravel base url

// Get the base URL.
echo url('');

// Get the app URL from configuration which we set in .env file.
echo config('app.url');
Posted by: Guest on September-16-2021

Browse Popular Code Answers by Language