Laravel Posts
-
How to install Laravel with NGINX on Ubuntu
Laravel is the most popular PHP MVC framework. If you have chosen a VPS or cloud hosting to deploy your laravel website, this post will...
-
Perform CRUD Operations using Laravel Eloquent
In this post we will learn about how to perform CRUD Operations using Laravel Eloquent. Eloquent is the laravel way to talk to the database....
-
Remove public from Laravel URL
By default, We browse laravel application by appending public on URL. If you are using shared hosting environment, sometimes it is difficult to configure your...
-
How to Install Laravel on Windows Xampp
In this post, we will learn how to install laravel on windows xampp. Laravel is a popular PHP framework and as it is based on...
-
How to use Laravel Database Migrations
Laravel database migrations are useful for performing database operations without going deep into SQL syntax.We can create and modify tables using migrations.