Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Laravel 5.0 Defining Different Named Fields as CREATED_AT And UPDATED_AT

In Laravel two fields are auto filled or modified they are created_at and updated_at but what if your table have different named fields example created and modified in it's place they won't be auto filled or modified automatically. So to make the...

Laravel 5.0 Creating Download CSV Link

In Laravel, many times we may need to create a link to download sample CSV file. So that user can download sample CSV file from our website and upload correct formatted file. It's a very simple task and to accomplish that we need to follow fo...

Laravel 5.0 Creating Custom Middleware For Different Roles

Laravel provide us the facility to create our custom middleware for user's authentication. We can create different MIddleware for different roles. To accomplish it we need to follow the following steps. Step 1st:- Creating new Middleware for...

Laravel 5.0 Grouping Similar Routing Requets Requests

In Laravel many times we need to group together many routing requests having same middleware, controller, suffix, etc. We can achieve that by using Route::group. The syntax of it is stated below. Syntax :- Route::group(["middleware" =&g...

Laravel 5.0 Creating Request Handler

In Lavarel one of the best practice is to use form validation rules to validate the submitted data. There are number of ways to do it . One way is to create form validation rules both in the controller or we can create a separate file under the a...

Middleware In laravel 4.x

Middleware is one of the important part of any application. The code which we want to stick between request/response life cycle which is not necessary part of our application logic. That is called as middleware. Let take a example to know more a...

Routing in Laravel 4.x

In any project routing plays an important role.In laravel 4.x we will define our routes in routes.php which is in app/routes.php. In laravel 4.x the basic routes consist of a URL and a clousure callback. Example: Basic Get Route Route::ge...

How to enable & disable maintenance mode in laravel 5

There are two ways to enable & disable maintenance mode in laravel 5.Whenever your website is in maintenance mode, laravel return a custom view that will be displayed for all requests. This makes it easy to "disable" your website or applicati...

How to disable user registration in Laravel 5

Laravel 5 provides built-in user registration and login functionality which allow developer to easily integrate both functionality in their application. But some times laravel developer wants to disable the user registration or restrict user for ...

How to Use Mandrill SMTP in LARAVEL 4?

Using Mandrill SMTP in LARAVEL4 is easy to use by following below changes in cofig/mail.php return array( /* |-------------------------------------------------------------------------- | Mail Driver |---------------------...
prev 1 2 next
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: