Просмотр файла app/Models/Tag.php
<?php
declare(strict_types=1);
namespace App\Models;
/**
* Class Tag
*
* @property int $id
* @property string $value
*/
class Tag extends Model
{
/**
* Table name
*/
protected string $table = 'tags.csv';
}