| 1234567891011121314151617181920 | <?phpnamespace App\Models\Telegram;use Illuminate\Database\Eloquent\Model;class TelegramBotAd extends Model{	protected $connection = 'mysql';    protected $table = 'telegram_bot_ad';    protected $primaryKey  = 'rid';    protected $keyType = 'int';    public $timestamps = false;    protected $guarded = [];}
 |