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 Keyword extends Model
{
protected $fillable = ['emoji_id', 'name', 'created_at', 'updated_at'];
* Get emoji keywords.
public function emoji()
return $this->belongsTo('Demo\Emoji');
}