あなたはとても近いです。
配列を降順で最初に並べ替えたいようです
Model::orderBy('created_at','desc')->take(3);
しかし、その後、配列を逆にします。これは、従来のPHP(array_reverseを使用)の2つの方法のいずれかで実行できます。
$_dates = Model::orderBy('created_at','desc')->take(3);
$dates = array_reverse($_dates);
または、reverse
を使用したlaravelの方法 LaravelのCollection
の関数 クラス。
$_dates = Model::orderBy('created_at','desc')->take(3)->reverse();
LaravelのCollection
をチェックしてください http://laravel.com/api/classのAPIサイトにあるドキュメント-Illuminate.Support.Collection.html
これで、$datesに必要な出力が含まれるようになります。
dunno,time3
world,time4
hihio,time5