for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author: Raimi Ademola <[email protected]>
* @copyright: 2016 Andela
*/
namespace Demo;
use Illuminate\Database\Eloquent\Model;
class User extends Model
{
protected $fillable = ['fullname', 'username', 'password', 'created_at', 'updated_at'];
* Get creator of an emoji.
public function emoji()
return $this->hasMany('Demo\Emoji');
}