Backend\BackupRestoreController::getRestore PHP Метод

getRestore() публичный Метод

public getRestore ( )
    public function getRestore()
    {
        $backups = Backup::latest()->get();
        $this->layout->title = 'Restore from Backup';
        $this->layout->content = View::make($this->link_type . '.' . $this->current_theme . '.backup_restore.restore')->with('backups', $backups);
    }