for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Iben\Statable\Models;
use Illuminate\Database\Eloquent\Model;
class StateHistory extends Model
{
protected $table = 'state_history';
protected $guarded = [];
public function statable()
return $this->morphTo();
}