Laravel Tutorial #10: Deployment
Finally, it’s time to deploy our project. Instead of doing everything manually, we use a server management panel, which is much more beginner-friendly. Setup a… Read More »Laravel Tutorial #10: Deployment
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.
Finally, it’s time to deploy our project. Instead of doing everything manually, we use a server management panel, which is much more beginner-friendly. Setup a… Read More »Laravel Tutorial #10: Deployment
In this post, we’ll create some optional features for our website. If you are not interested, just skip this post and go to the final… Read More »Laravel Tutorial #9: Wrap Things Up
The search function is a fundamental feature for almost all websites, and in this article, we’ll talk about how to implement basic search in our… Read More »Laravel Tutorial #8: Search
Registering Routes We didn’t use the single-action controller for the post controller because we are going to add a search function here in the next… Read More »Laravel Tutorial #7: Create Routes, Controllers and Views
Design Database Structure For a simple blogging system, we need at least 4 database tables: Users, Categories, Tags, and Posts. If you want other functions for your blog, comments,… Read More »Laravel Tutorial #6: Create Models and Setup Admin Panel
Now, it’s time for us to dive into our project. To get familiar with everything, we start by creating only the home page. If you… Read More »Laravel Tutorial #5: Create the Home Page
Every website requires an admin panel. Unfortunately, unlike Django, Laravel does not include a built-in admin panel, but there are still lots of other choices.… Read More »Laravel Tutorial #4: Admin Panel
Introducing the MVC Structure The MVC structure means that the application is divided into three parts. The (M) model defines the data model, (V) view… Read More »Laravel Tutorial #3: The MVC Structure
In the second part of this tutorial, we’ll take a look at the routing in Laravel, which is the entry point of our project. Basic… Read More »Laravel Tutorial #2: Routing
Laravel is a very powerful framework that follows the MVC structure. It is designed for web developers who need a simple, elegant yet powerful toolkit… Read More »Laravel Tutorial #1: Setup the Project