This tutorial will guide you through building a complete blog application using Laravel 10. By the end of this tutorial, you'll have a fully functional blog with the ability to create, read, update, and delete articles.
• Twitter: @codewithdary
• Instagram: @codewithdary
• TikTok: @codewithdary
• Blog: @codewithdary
• Patreon: @codewithdary
- Setting up migrations
- Setting up Seeders & Factories
- Setting up Relationships
- Creating our ArticleController
In order to follow along with this tutorial, you'll need to have some familiarity with PHP and Laravel. You should also have Laravel installed on your local machine.
To get started, clone the repository and navigate to the project directory in your terminal. Then, run the following commands:
composer install
npm install
php artisan migrate --seed
This will install the necessary dependencies, run the database migrations, and seed the database with some sample data.
By the end of this tutorial, you should have a solid understanding of how to build a basic blog application using Laravel. From here, you can continue to expand and customize the application to meet your specific needs.