for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App;
use App\Libraries\WithoutTimestampsModel;
class TagTranslation extends WithoutTimestampsModel
{
/**
* @var string
*/
protected $table = 'taggable_tag_translations';
* @var array
protected $fillable = [ 'language_id', 'taggable_id', 'name', 'group' ];
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
public function tag()
return $this->belongsTo(Tag::class, 'tag_id', 'id');
}