Posts for Laravel

Laravel is a free, open-source PHP web framework, created by Taylor Otwell and intended for the development of web applications following the model–view–controller architectural pattern and based on Symfony
Deven
Deven wrote

Pagination in Laravel 8 explained with examples

Laravel is one of the easiest and efficient PHP frameworks. It follows MVC or model, view, controller design pattern. It provides many exciting features for web development. Pagination is one of them. Laravel’s paginator uses Query builder and Eloquent ORM that provides suitable easy-to-use pagination. In this tutorial, you are going to learn about how […]

January 17, 2022 in Laravel

How to conditionally redirect users after login on Laravel Jetstream

In this article, you will learn how to conditionally redirect users after login to Laravel Jetstream and Fortify applications. With the introduction of Laravel Jetstream, it is always tempting to setup Laravel projects with Laravel Jetstream and Fortify handling the authentication of your app. It becomes challenging when your project requires custom redirection to a […]

February 23, 2021 in Laravel & Tutorials

Build a complete Laravel CRUD application with MySQL

In this tutorial, we will create a complete laravel CRUD application with features like error handling, pagination, and all the best practices so that you can improve the quality of your Laravel project. For illustration consider the following application: Contents Requirements Setup Laravel project Create Controller and Model Setup the Layout READ Operation CREATE Operation […]

August 24, 2020 in Laravel & MySQL & Tutorials

Build a CRUD Application Using Laravel and Vue

In this tutorial, we’ll build a complete CRUD application using VueJS and Laravel.For illustration, consider the following simple app: Contents Before we kick off Introduction Setting up Laravel and VueJs Initialize VueJS Create Operation Read Operation Update Operation Delete Operation Conclusion Before we kick off Learn Vue.js and modern, cutting-edge front-end technologies from core-team members […]

August 18, 2020 in Laravel & Tutorials & Vue