Answers for "laravel path windows"

PHP
0

laravel file path

use IlluminateSupportFacadesStorage;

$path = Storage::path('file.jpg');
Posted by: Guest on October-17-2020
0

add laravel installer to path

# For WSL, you will find the global composer location in ~/.config/composer
# Instead of the usual ~/.composer/
# To add a normal composer install to your WSL path do the following
export PATH="$PATH:~/.config/composer/vendor/bin"
# Reload bash
source ~/.bashrc
# Use composer package (ex. Laravel)
Posted by: Guest on October-25-2021

Browse Popular Code Answers by Language