Ejemplo n.º 1
0
 static function getPostAll()
 {
     $posts = Post::all();
     foreach ($posts as $post) {
         self::setFormattedDate($post);
     }
     return $posts;
 }