diff --git a/extra/philosophy.md b/extra/philosophy.md index df22dcc7ea6..07c71404681 100644 --- a/extra/philosophy.md +++ b/extra/philosophy.md @@ -4,7 +4,7 @@ In 25 years of PHP, the web changed dramatically and is now evolving faster than - Thanks to awesome frontend technologies such as [React](https://reactjs.org/) or [Vue.js](https://vuejs.org/), [full-JavaScript Progressive Web Apps](https://en.wikipedia.org/wiki/Progressive_web_application) **are becoming the standard**. -- [Internet users spend more time on their mobile devices than on desktops](https://www.broadbandsearch.net/blog/mobile-desktop-internet-usage-statistics): having a mobile-first website is mandatory and **native mobile apps are a must-have**. +- [Internet users spend more time on their mobile devices than on desktops](https://www.broadbandsearch.net/blog/mobile-desktop-internet-usage-statistics): having a mobile-first website is mandatory and **native mobile apps are a must have**. - [The semantic web](https://en.wikipedia.org/wiki/Semantic_Web) and **especially [Linked Data](https://en.wikipedia.org/wiki/Linked_data) is a reality**: with the [Schema.org](https://schema.org/) initiative and new open web standards such as [JSON-LD](https://json-ld.org/), search engines (among a bunch of other services and software) consume structured and machine-readable data at web scale. diff --git a/laravel/index.md b/laravel/index.md index 219d569f20e..bab1332e33c 100644 --- a/laravel/index.md +++ b/laravel/index.md @@ -445,7 +445,7 @@ There's a powerful mechanism inside API Platform to create routes using relation ## Paginating Data -A must-have feature for APIs is pagination. Without pagination, collection responses quickly become huge and slow, +A must have feature for APIs is pagination. Without pagination, collection responses quickly become huge and slow, and can even lead to crashes (Out of Memory, timeouts...). Fortunately, the Eloquent state provider provided by API Platform automatically paginates data!