Answers for "get path laravel"

PHP
3

laravel get project root

public_path(); // Path of public/
base_path(); // Path of application root
storage_path(); // Path of storage/
app_path(); // Path of app/
Posted by: Guest on August-24-2020
0

laravel storage get file path

use Illuminate\Support\Facades\Storage;

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

Browse Popular Code Answers by Language