THE LECTURES ARE STILL BEING UPLOADED
Hello every body ,Here is a detailes outline for what we will learn in this course
This course is made for beginners to learn LARAVEL PHP Framework .In this course you will learn :
What is Laravel and How to install and run Laravel
Know about Laravel as a framework
Installing Laravel using composer
Laravel File Structure
Introduction to artisan command file of Laravel
Introducing Laravel conventions
The components of laravel :
Routings - How requests are being read by processing the URI of a request
Controllers - Managing the request ,processing data ,and sending responses
Middle ware - The component that acts as a gateway to permit or prevent users from making requests
Views - Manage printing data to end user (With some hints on HTML and JQuery)
Helper Functions
How to work with Models (Eloquent ORM) ,and managing database :
Migrations - Build the database structure (Tables ,Fields , and Relationships)
Seeds - Initiate data inside your database tables
Factories - Create Fake and safe data to test your application
Eloquent ORM - object-relational mapper (ORM) that makes it enjoyable to interact with your database
Initiating models accodring to tables (Using Laravel conventions)
Controlling fields of tables which are/are not visible on the model
Adding additional properties to data on making calculations on the existing data to obtain other data
Laravel API - for mobile APPs
Building responses for mobile applications using RESTFUL API