PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
livewire
/
livewire
/
src
/
Features
/
SupportDisablingBackButtonCache
/
Editing: HandlesDisablingBackButtonCache.php
<?php namespace Livewire\Features\SupportDisablingBackButtonCache; trait HandlesDisablingBackButtonCache { function disableBackButtonCache() { SupportDisablingBackButtonCache::$disableBackButtonCache = true; } function enableBackButtonCache() { SupportDisablingBackButtonCache::$disableBackButtonCache = false; } }
SAVE
CANCEL