Skip to content

Instantly share code, notes, and snippets.

@abdullah353
Created March 5, 2014 07:04
Show Gist options
  • Save abdullah353/9362503 to your computer and use it in GitHub Desktop.
Save abdullah353/9362503 to your computer and use it in GitHub Desktop.
Deafult Values In laravel Model
class MyModel extends Eloquent {
protected $attributes = array(
'field' => 'default',
'field2' => 'default2',
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment