You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's no shortage of good resources for learning laravel.
So instead of the usual introductory tutorial were just gonna learn Laravel by building
a project from scratch and that's gonna be a User Management System.
I don't know if my definition of a User Management System is correct
but here's my idea of what's it's capable of doing:
Only display MDS Shipping fields if MDS was selected as the shipping method on Cart Page
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Laravel 4 Authenticate Multiple User Provider Allows Laravel Auth to login using multiple tables and/or databases/Eloquent User Models... Each User Model can have its own Hasher and Hasher options...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
There are many tools one can use to improve productivity, however, its sometimes the simplest of changes/configuration to your existing tools that makes the most impact.
As an example: Bash Scripts. If you're writing more than 15 characters in bash multiple times a day with random IP's and tags to remember, write a simple shorthand function.
Examples:
Instead of typing scp -P 5555 /some/path/to/file.php [email protected]:/var/www/project/current/some/path/to/file.php, I have a little script: scp{projectname} /some/path/to/file.php. It already knows our server details, and the path relative to the project (both locally for autocompletion, and on the server). It also sends out a HipChat notification that the certain file has been overwritten, so I don't have to worry about keeping the team in the loop. (Yes, I do push files directly to our live production server from time to time, sue me)
Also, being 100% comfortable with your IDE is extremely important. Set i
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters