Skip to content

Instantly share code, notes, and snippets.

View ossycodes's full-sized avatar
🎯
Focusing

Osaigbovo Emmanuel ossycodes

🎯
Focusing
View GitHub Profile
@ossycodes
ossycodes / AppServiceProvider.php
Created November 13, 2021 00:42 — forked from simonhamp/AppServiceProvider.php
A pageable Collection implementation for Laravel
<?php
namespace App\Providers;
use Illuminate\Support\Collection;
use Illuminate\Pagination\LengthAwarePaginator;
class AppServiceProvider extends ServiceProvider
{
public function boot()
@ossycodes
ossycodes / massInsertOrUpdate.php
Created August 5, 2021 09:37 — forked from RuGa/massInsertOrUpdate.php
Mass (bulk) insert or update on duplicate for Laravel 4/5
/**
* Mass (bulk) insert or update on duplicate for Laravel 4/5
*
* insertOrUpdate([
* ['id'=>1,'value'=>10],
* ['id'=>2,'value'=>60]
* ]);
*
*
* @param array $rows