roksta/helpers

die and dump for debugging

1.0.0 2017-01-25 08:29 UTC

This package is auto-updated.

Last update: 2024-05-10 16:51:38 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);