What is the best practice to create a custom helper function in php Laravel 5?
问题 I have the default created_at date keep printing out as an MySQL format : 2015-06-12 09:01:26. I wanted to print it as my own way like 12/2/2017 , and other formats in the future. I created a file called DataHelper.php and store it at /app/Helpers/DateHelper.php - and it looks like this <?php namespace App\Helpers; class DateHelper { public static function dateFormat1($date) { if ($date) { $dt = new DateTime($date); return $dt->format("m/d/y"); // 10/27/2014 } } } I want to be able to called