Laravel 实际应用 - 任务管理应用程序
Laravel in action - Task management application
- 2. Required Tools for Working with Laravel XAMPP, PHP, MySQL, and Composer Install
- 1. XAMPP - installing pre-required to work with Laravel PHP & MySQL
- 2. What is Composer and how to install it
- 3. Editor Visual Studio Code
- 1. VSC installation
- 2. Creating your first project in VSC
- 3. Installing extensions used in THIS Laravel course
- 4. Configuration and installment of Laravel in VSC
- 1. Installing Laravel framework using Composer
- 2. What is Artisan How do we run the server
- 5. Laravel Basics Views & Routes
- 1. What is View What is Route How to create your first viewroute
- 2. Connecting Main Site to todoapp
- 4. Organizing structure of our todoapp project
- 5. Accessing route by names using helper function inside blade.php
- 6. Layout
- 6. Laravel Basics Controller & Routes
- 1. What is Controller Connecting TodoApp Route to TodoAppController
- 7. Laravel Database
- 1. How to attach database like MySQL to our framework
- 8. Model
- 1. Model Task
- 2. 'task' table CREATION Creating Schema and Migrating Migrations in Laravel
- 9. MVC in action
- 1. Displaying tasks from todoapp
- 2. Storing new task in todoapp table
- 3. Redirecting the user
- 4. Deleting task from todoapp Setting route parameters DELETE request
- 5. Updating Task from todoapp PUT request
- 6. Marking item from todoap as COMPLETE
- 10. Organizing our todoapp
- 1. Mass assigment
- 2. Grouping related routes by prefix & name
- 3. Grouping related routes by controller
- 11. Validation - checking user input
- 1. Validating data in todoapp
- 2. Displaying errors in todoapp
- 12. Using resources like CSSJSimages in Laravel project
- 1. How to manually add cssjsimages to your project
- 2. How to use Vite for building and attaching assets
- 13. Middleware
- 1. What is middleware and when have we already used it
- 2. How to log IP of person that deleted task in todoapp