Skip to content

Instantly share code, notes, and snippets.

@WingF
WingF / Initial-Server-CentOS-7.md
Created May 2, 2019 04:31 — forked from xuannghia/Initial-Server-CentOS-7.md
Initial Server Setup CentOS 7 - with NGINX, PHP 7.2, MariaDB 10.2, PostgreSQL 10 ,phpMyAdmin 4.8, MongoDB

1. Add Repositories

EPEL repository

sudo yum install -y epel-release

SCLo Software collections Repository

yum -y install centos-release-scl-rh centos-release-scl

Remi repository

@WingF
WingF / AppServiceProvider.php
Created November 12, 2018 16:24 — 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()