Support the ongoing development of Laravel.io →
Input Database Validation
Last updated 1 year ago.
0

If you're workin with a Model: Take a look at Mutators

With mutators you can create a method in your Model:

public function setDateAttribute($value)
{
    $this->attributes['date'] = 'convertion rules';
}

If not, see Carbon createFromFormat method.

Last updated 6 years ago.
0

First parse your date field as Carbon object.

$createdAt = Carbon::parse(your_date);

Then you can use

$date = $createdAt->format('M d Y');
0

Sign in to participate in this thread!

Eventy

Your banner here too?

JovenDev jovendev Joined 10 May 2017

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.