Skip to content

Instantly share code, notes, and snippets.

@ziyahan
Created March 4, 2015 13:17
Show Gist options
  • Save ziyahan/092b9e8f603ec04504f5 to your computer and use it in GitHub Desktop.
Save ziyahan/092b9e8f603ec04504f5 to your computer and use it in GitHub Desktop.
Role
<?php namespace App\DBModel;
use Illuminate\Database\Eloquent\Model;
class Role extends Model {
//
public $timestamps = false;
public function user()
{
return $this->hasMany('App\DBModel\User');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment