roksta/helpers

die and dump for debugging

Installs: 4

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:project

pkg:composer/roksta/helpers

1.0.0 2017-01-25 08:29 UTC

This package is auto-updated.

Last update: 2025-10-10 19:38:06 UTC


README

just helpers I use on most projects.

install

composer require roksta/helpers

1. die and dump - dd()

  dd($data);
  
  // or multiple, max of 5
  dd($data1, $data2, $data3, $data4, $data5);