how to print array in laravel blade code example

Example 1: how to print array in laravel blade

@php
            var_dump($arr);
        @endphp

Example 2: how to print array in laravel blade

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

Example 3: how to print array in laravel blade

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

Example 4: how to print array in laravel blade

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

Example 5: how to print array in laravel blade

@foreach ($watchFolder as $w)
    {{ $w->name }}    
@endforeach

Example 6: 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:

Misc Example