View file app/Models/Poll.php

File size: 350B
<?php

declare(strict_types=1);

namespace App\Models;

/**
 * Class Poll
 *
 * @property int $id
 * @property int $user_id
 * @property int $entity_id
 * @property string $entity_name
 * @property string $vote
 * @property int $created_at
 */
class Poll extends Model
{
    /**
     * Table name
     */
    protected string $table = 'polls.csv';
}