summerblue / laravel5-cheatsheet

A quick reference guide (cheat sheet) for Laravel 5.1 LTS, listing artisan, composer, routes and other useful bits of information.
https://cs.laravel-china.org/
783 stars 166 forks source link

There seems to be an error in the document #14

Open ghost opened 7 years ago

ghost commented 7 years ago
Model::all()->take(10);
Model::all()->skip(10);

Model::all() return Collection,but Collection doesn't have skip method