laravel storage get file content code example
Example 1: laravel storage hard link
php artisan storage:link
Example 2: laravel storage get file path
use Illuminate\Support\Facades\Storage;
$path = Storage::path('file.jpg');
Example 3: laravel get file contents from storage
$contents = Storage::disk('local')->get('file.txt');