Просмотр файла app/Models/Sticker.php
<?php
declare(strict_types=1);
namespace App\Models;
/**
* Class Sticker
*
* @property string $login
* @property string $path
*/
class Sticker extends Model
{
protected string $filePath = __DIR__ . '/../../database/stickers.csv';
/**
* The attributes that should be cast.
*/
protected array $casts = [
'code' => 'string',
];
}