Skip to content

Instantly share code, notes, and snippets.

@INDIAN2020
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save INDIAN2020/9070092 to your computer and use it in GitHub Desktop.
Save INDIAN2020/9070092 to your computer and use it in GitHub Desktop.
http://css.dzone.com/articles/cool-things-learn-about
http://www.developed.be/2013/08/30/laravel-4-pivot-table-example-attach-and-detach/
http://code.tutsplus.com/tutorials/authentication-with-laravel-4--net-35593
GETTING LISTED APPROVED SCHOOLS
$categories = array();
foreach (School::whereApproved(1)->get() as $category) {
$categories[$category->id] = $category->name;
}
$categories = array('' => 'Please Select School') + $categories;
GETTING ALL COUNTRIES FROM DATABASE AS LIST
$countries = array('' => 'Please Select Your Country') + Country::lists('name', 'id');
http://packalyst.com/packages/package/logicalgrape/paypal-ipn-laravel
http://blog.ninjamedia.com.au/2013/11/laravel-4-route-resources-by-year-month-day/
http://www.youtube.com/user/michaeljcalkins/videos
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment