thats right all our bundles now have free shipping and 15% bulk buy discount...get some chocolate or peanut butter or both!
seen from Colombia
seen from United States

seen from Malaysia
seen from United Kingdom

seen from United States
seen from Vietnam
seen from United States
seen from United States

seen from United States
seen from China
seen from United States
seen from South Korea
seen from United States

seen from United States
seen from China
seen from Russia

seen from United Kingdom
seen from United States
seen from United States
seen from Russia
thats right all our bundles now have free shipping and 15% bulk buy discount...get some chocolate or peanut butter or both!
Aware: Self-validating Models for Laravel
Last night, I submitted a brand new bundle for Laravel PHP! Aware is an extension of Taylor Otwell's Eloquent ORM, which allows you to define models with built-in validation.
Aware use's Laravel's Validator class so it's easy to define validation rules:
class User extends Aware { /** * Aware validation rules */ public static $rules = array( 'name' => 'required', 'email' => 'required|email' ); ... }
Aware models validate automatically when the save method is called:
$user = new User(); $user->name = 'Colby'; $user->email = 'crabideau5691'; $user->save(); // returns false $user->email = '[email protected]'; $user->save(); // returns true
If a model is invalid, you can access the errors from the validator like so:
$user->errors->all()
For more detailed documentation and to browse the source check out the github repo.