Laravel Training Course
Laravel is the best PHP based framework that provides faster and secured development environment. It follows MVC architecture to offer standardized platform for making high performance website. Laravel is Open source MVC Framework Written in PHP.
Introduction
- Installing Laravel
- Artisan CLI ( command-line interface )
- Laravel Directory Structure
- Configuring a new Laravel project
- Artisan command to generate boilerplate code for a controller
- Basics of laravel——> Routing
- Controller
- Middleware
- Request
- Response
- HTML Template to Laravel Blade Template
- HTML Template to Laravel Blade Template———> Template inheritance
- Master layout
- Extending the master layout
- Displaying variables
- Blade conditional statements
- Blade Loops
- Executing PHP functions in blade
- Displaying Your Views
- Creating and using a basic views
- Loading a view into another view/nested views
- Adding assets Integrating with Bootstrap
- Introduction
- Requirements for running migrations
- Artisan migration command
- Migration structure
- How to create a table using a migration
- Laravel migration rollback
- Database Seeding
- Migrations for our project database Pagination
- Creating contact us form
- Validating user input
- Sending email
- Creating a file uploader
- Validating a file uploader
- Creating a custom error message
- Laravel Collective——> Installation
- Opening A Form
- Form Model Binding
- Form controls
- Custom macros
- Introduction
- Creating a basic controller
- Creating a route using a closure
- Making the controller RESTful
- Using route groups
- Building a RESTful API with routes
- Rest API with Passport Authentication
- Event
- Mail
- Queue
- Task Scheduling
- Eloquent ORM and Models——> Naming conventions
- Table name and primary keys
- Timestamps
- Eloquent ORM INSERT, READ, UPDATE, DELETE
- Relationship
- Using models in controllers
- Displaying data from models in views
- Creating and Using Composer Packages———-> Downloading and installing packages
- Using a basic Shopping Cart package in our project
- socialite
- Using Ajax and jQuery—–> Getting data from another page
- Setting up a controller to return JSON data
- Creating a Jquery, AJAX comment system
- Security & Session——> Using Security Sessions Effective