The ASUS RT-AC88U is a pretty awesome router. However, out of the box, it’s a bit finicky if you try to print to it via WiFi or Apple’s AirPrint. It doesn’t seem to want to...

Laravel’s login throttling is a valuable combatant against dictionary attacks. the user will not be able to login for one minute if they fail to provide the correct credentials after sev...

Use laravel validation with vuejs and veevalidate   NPM: https://www.npmjs.com/package/vee-validate-laravel   Add to app.js: import VeeValidate from 'vee-validate'; import VeeValidate...

Pulled from http://laravelcoding.com/blog/laravel-5-beauty-sending-mail-and-using-queues   Changing the Controller To queue the email, there’s only a single small change to make. Up...

In the stripe documentation  https://stripe.com/docs/connect/direct-charges they have a PHP version on how to do a direct charge. // Set your secret key: remember to change this to your live s...

Validate an array from a laravel dropdown:   'purpose_list'  => 'required|array|min:1',

In order to use custom authentication you can add all custom authentication by overriding the authenticated() method in the illuminate\foundation\auth\AuthenticatesUsers.php   Create the custom...

There is a fork of https://github.com/jarektkaczyk/eloquence that works with L5.4 here https://github.com/ortic/eloquence   This will add search to L5.4

DOES NOT WORK IN L5.4   Copy the function sendResetLinkEmail() from illuminate\Foundation\Auth\SendsPasswordResetEmails.php and place it in your ForgotPasswordController.php this will over...

When trying to get the default Laravel Authentication up and running I ran into this error. 'Illuminate\Database\QueryException' with message 'SQLSTATE[42000]: Syntax error or access violation: 1071...