array print in laravel in view code example
Example 1: how to print array in laravel blade
<?php dd($array); ?>
Example 2: how to print array in laravel blade
@foreach ($watchFolder as $w)
{{ $w->name }}
@endforeach
<?php dd($array); ?>
@foreach ($watchFolder as $w)
{{ $w->name }}
@endforeach