Answers for "not found file in public path laravel"

PHP
1

laravel not finding asset files in public directory

Add ASSET_URL=public in your .env file and run php artisan config:cache
Posted by: Guest on August-23-2021
0

public_path laravel

echo base_path() . "\n";
echo app_path() . "\n";
echo public_path() . "\n";
echo storage_path() . "\n";
Posted by: Guest on October-17-2021

Code answers related to "not found file in public path laravel"

Browse Popular Code Answers by Language