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.
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
}
}
}
to be able to called it in my blade view like
DateHelper::dateFormat1($user->created_at)
I'm not sure what to do next.
What is the best practice to create a custom helper function in php Laravel 5?
What is a Helper Function? A helper function usually comes in handy if you want to add a feature to your Laravel application that can be used at multiple locations within your controllers, views, or model files. These functions can be considered as global functions.
app/Http
directory, create a helpers.php
file and add your functions.composer.json
, in the autoload
block, add "files": ["app/Http/helpers.php"]
.composer dump-autoload
That should do it. :)
Since your Helper method is static you could add your helper class to config/app
alias just like a Facade, like so:
'aliases' => [
//'dateHelper'=> 'App\Helpers\DateHelper', //for Laravel 5.0
'dateHelper'=> App\Helpers\DateHelper::class, //for Laravel 5.1
]
Then later in your view:
{{dateHelper::dateFormat1($user->created_at)}}
However, if you are also looking for a way to do this without a helper class. You may consider using Mutators and Appends in your model:
class User extends Model{
protected $fillable = [
'date'
];
protected $appends = [
'date_format_two'
];
public function getDateAttribute($value){
$dt = new DateTime($value);
return $dt->format("m/d/y"); // 10/27/2014
}
//date
public function getDateFormatTwoAttribute($value){
$dt = new DateTime($value);
return $this->attributes['date_format_two'] = $dt->format("m, d ,y"); // 10,27,2014
}
}
Later you can do
$user = User::find(1);
{{$user->date}};
{{$user->date_format_two}};
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With