Skip to content

Instantly share code, notes, and snippets.

@hoanganh25991
Last active October 29, 2015 14:04
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 hoanganh25991/983a801d91de9375e9a6 to your computer and use it in GitHub Desktop.
Save hoanganh25991/983a801d91de9375e9a6 to your computer and use it in GitHub Desktop.
Laravel: Model Cat
<?php
class Cat extends Eloquent {
protected $fillable = array('name','date_of_birth','breed_id');
public function breed(){
return $this->belongsTo('Breed');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment