for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Presspack\Framework\Support\Translation;
use Presspack\Framework\Post;
use Illuminate\Database\Eloquent\Model;
class Translation extends Model
{
protected $table = 'icl_translations';
protected $primaryKey = 'translation_id';
public function post()
return $this->belongsTo(Post::class);
}