. */ namespace Poniverse\Ponyfm\Models; use Illuminate\Database\Eloquent\Model; /** * Poniverse\Ponyfm\Models\License * * @property integer $id * @property string $title * @property string $description * @property boolean $affiliate_distribution * @property boolean $open_distribution * @property boolean $remix * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\License whereId($value) * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\License whereTitle($value) * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\License whereDescription($value) * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\License whereAffiliateDistribution($value) * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\License whereOpenDistribution($value) * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\License whereRemix($value) * @mixin \Eloquent */ class License extends Model { protected $table = 'licenses'; }