how to display value of an array in laravel blade code example
Example 1: how to print array in laravel blade
echo implode("\n",$array);
Example 2: 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]);
}
}