- معرفات فريدة بدل المتصاعدة تلقائيا
- طريقة SQL القديمة؟
- مصفوفات كتجميعات
- مجموعات مجمعة
- abort_if و abort_unless
Schema::create('users', function (Blueprint $table) {
$table->uuid('id')->unique();
});
DB::statement('DROP TABLE users');
$users_collection = new \Illuminate\Support\Collection([
['name' => 'jhon doe', 'email' => 'jhondoe@doe.do'],
['name' => 'will smith', 'email' => 'willsimth@will.sm'],
]);
// or
$users_collection = collect([
['name' => 'jhon doe', 'email' => 'jhondoe@doe.do'],
['name' => 'will smith', 'email' => 'willsimth@will.sm'],
]);
$collection = Person::all();
$grouped = $collection->groupBy('type');
عوضا عن
if ($order) {
abort(404);
}
elseif(!$order){
abort(401);
}
يمكنك
abort_if($order ,404);
abort_unless($order ,401);