As a developer, I have experienced changes in an app when it is in production and the records have grown up to millions. In this specific case if you want to alter a column using simple migrations ...
Laravel Cheat Sheet , Codes , function , methods of laravel framework ...
Automatically generate your API documentation from your existing Laravel routes. Take a look at the example documentation. php artisan api:gen --routePrefix=settings/api/* To generate your API ...
Add Authentication and Authorization to Vue.js Apps with Auth0 and GraphQL Hasura wrote a nice tutorial on how to add Authentication and Authorization to Vue.js Apps with Auth0 and GraphQL. Andrew ...
One of the bestselling Laravel books! Learning Laravel book shows you a fastest way to learn developing web applications using Laravel 8 PHP framework ...
Using PHP OPcache is a great way to improve your overall performance. OPcache stores pre-compiled script bytecode in memory, which eliminates the need for PHP to load and parse scripts on every ...
CoreUI 3 has just been released with some cool new features and layouts. If you don't know CoreUI yet, check it out! CoreUI is one of the most popular open-source admin panel templates built on top of ...
Passport is a Laravel package that provides a complete OAuth2 implementation out of the box. It is built on top of the OAuth2 server library by The League of Extraordinary Packages. If you have ever ...
Laravel Websockets is a Laravel package that can handle the server side of WebSockets, written in PHP. With it, we don't have to use Pusher or laravel-echo-server anymore. It has extensive ...
Laravel Gates allows you to authorize users from accessing certain areas of your application. You can easily define gates in your application and then use them to allow or deny access. Let's start ...
Wern Ancheta has a good tip about building infinite scroll in Laravel. In this quick tip I’ll be showing you how to easily implement infinite scroll in laravel. In the back-end, we will be using ...