print array blade laravel code example

Example 1: how to print array in laravel blade

echo implode("\n",$array);

Example 2: how to print array in laravel blade

echo implode("\n",array_collapse($array));

Example 3: how to print array in laravel blade

@foreach ($watchFolder as $key => $value)
    Key: {{ $key }}    
    Value: {{ $value }} 
@endforeach

Example 4: how to print array in laravel blade

class WatchController extends Controller
{
    public function index(\Illuminate\Filesystem\Filesystem $filesystem)
    {
        $files = $filesystem->allFiles($watchFolderPath);

        // Your code.

        return view('name', ['files' => $files]);
    }
}

Tags:

Php Example