Sprache:

Suche

Einfache Datumszugriffsfunktionen - Laravel

  • Teilen:
Einfache Datumszugriffsfunktionen - Laravel

Für Szenarien, in denen Sie Ihre Datumsangaben in Laravel in menschenlesbarer Form für Ihre APIs formatieren müssen. Hier ist das einfache Snippet, das Sie in Ihrer Model-Klasse verwenden können.

/**
 * @return string
 */
public function getCreatedAtAttribute()
{
    return Carbon::parse($this->attributes['created_at'])->diffForHumans();
}

/**
 * @return string
 */
public function getUpdatedAtAttribute()
{
    return Carbon::parse($this->attributes['updated_at'])->diffForHumans();
}

Mehr über Laravel Accessors erfahren Sie hier.

Usama Muneer

Usama Muneer

A web enthusiastic, self-motivated & detail-oriented professional Full-Stack Web Developer from Karachi, Pakistan with experience in developing applications using JavaScript, WordPress & Laravel specifically. Loves to write on different web technologies with an equally useful skill to make some sense out of it.