$orders = Order::all()->groupBy('status');
$orders->toArray();
$orders = [];
$usOrders = Project::where('status', '>', '2')->orderBy('status', 'desc')->get();
array_push($orders , $usOrders);
$allOrders = Project::where('status', '<', '3')->orderBy('created_at', 'desc')->get();
array_push($orders , $allOrderss);