Laravel Package Development

Posted by & filed under .

Packages are the primary way of adding our custom functionality to Laravel which aren’t provide by framework. ACL ( Access Control List ) System using Laravel Authorization and available laravel acl packages Design Patterns followed while developing ecommerce web application MVC Repository Pattern Strategy Pattern Performing Gulp tasks using Laravel Elixier Use of Bower for… Read more »

Laravel Services

Posted by & filed under .

Authentication of our application Introduction Configuring Auth Library Creating authentication system using Middleware Artisan Console Concept Exception Handling and Error Logging Laravel Helpers Briefing through available helpers Mail Configuring & sending mail Pagination Session Cache Event Laravel’s events provides a simple observer implementation, allowing you to subscribe and listen for events in your application. Localization… Read more »

Laravel Forms & Html Component

Posted by & filed under .

Installation Generating form CSRF Protection Form Elements Labels Text, Text Area, Password & Hidden Fields Checkboxes and Radio Buttons File Input Number Input Date Input Drop-Down Lists Buttons Custom Form Macros

View

Posted by & filed under .

Passing data to view Sharing data to all views Blade Template Engine Introduction Template Inheritance Displaying Data Implement Control Structures

Model

Posted by & filed under .

Eloquent ORM Defining Model Retrieving Model Insert & Update Model Deleting Model Eloquent Relationship One to One One to Many Many to Many

Database

Posted by & filed under .

 Introduction  Migration Schema Building Migration Structure Running Migration Writing Migration Seeding Database Configuration Running Raw SQL queries

Response

Posted by & filed under .

Attach Headers and Cookie to response Response with View Response with JSON Response with File

Request

Posted by & filed under .

Handling Request Info. Request Inputs Form Inputs Old Inputs Cookies Files

Controllers

Posted by & filed under .

Introduction Basic Controllers Restful Resource Controllers Controller Routing Controller Middleware

Routing

Posted by & filed under .

 Basic Routing Named Routing Grouped Routing Routing Parameters Handling Invalid Routes Route filtering with Middleware