EDDYMENS


Published 2023-05-15 11:19:41

A Row Must Be An Array Or A TableSeparator Instance | Laravel Artisan Fix

If you try using the Laravel artisan output command , you might end up with the error This means whatever the method is getting is either not an array or in a format that is usable by the method. ...

Published 2023-05-09 15:13:38

Simple PHP Templating Engine

In this article, I will share two ways you can implement a simple templating engine in PHP. The focus is on data templating and does not include implementation for looping and handling conditions. PHP comes with an inbuilt templating syntax you can use. ...

Published 2023-05-01 05:28:09

Export CSV In Javascript

The snippet below allows you to export your provided data as CSV from your Javascript frontend: ...

Published 2023-04-14 03:48:56

How To Add Titles To Console.table Output

To output data in a table, you need to ensure your dataset comprises objects with keys and is packed within an array. Below is sample code showing what this looks like. ...

Published 2023-04-05 12:27:35

How To Clear Entire Session Or Local Storage

...