Appearance
GoBiz Original Website File Structure
The GoBiz Original template is organized into separate folders for website pages, common components, styles, JavaScript, images, fonts, routes, and template configuration. You can access the relevant folder or file to customize the website according to your requirements.
The main template directory is:
text
templates/GobizOriginal/Folder Structure
text
templates/
└── GobizOriginal/
├── GoBizOriginalServiceProvider.php
├── template.json
│
├── gobiz_original_assets/
│ ├── css/
│ │ ├── blog.css
│ │ ├── custom-style.css
│ │ ├── fontawesome.min.css
│ │ ├── style.css
│ │ ├── sweetalert.min.css
│ │ ├── swiper-bundle.min.css
│ │ ├── tabler-icons.min.css
│ │ ├── tailwind.min.css
│ │ └── fonts/
│ │
│ ├── images/
│ │
│ ├── js/
│ │ ├── alpine.min.js
│ │ ├── beautify-css.min.js
│ │ ├── beautify-html.min.js
│ │ ├── beautify.min.js
│ │ ├── clipboard.min.js
│ │ ├── EmojiPicker.js
│ │ ├── footer.js
│ │ ├── htmlminifier.min.js
│ │ ├── jquery.min.js
│ │ ├── lorem.js
│ │ ├── main.js
│ │ ├── pusher.js
│ │ ├── smooth-scroll.polyfills.min.js
│ │ ├── sweetalert.min.js
│ │ ├── swiper-bundle.min.js
│ │ ├── swiper-bundle.min.js.map
│ │ └── theme.bundle.js
│ │
│ └── webfonts/
│
└── Views/
└── Website/
├── includes/
│ ├── announcements.blade.php
│ ├── available-vcard-themes.blade.php
│ ├── cookie.blade.php
│ ├── footer.blade.php
│ ├── header.blade.php
│ ├── maintenance-mode.blade.php
│ ├── mobile-app-banner.blade.php
│ ├── register-closed-alert.blade.php
│ └── web-pop.blade.php
│
├── layouts/
│ └── index.blade.php
│
└── pages/
├── index.blade.php
├── maintenance.blade.php
├── 2f/
│ └── index.blade.php
├── about/
│ └── index.blade.php
├── auth/
│ ├── login.blade.php
│ ├── register.blade.php
│ ├── verification-notice.blade.php
│ ├── verify-public.blade.php
│ ├── verify.blade.php
│ └── passwords/
│ ├── confirm.blade.php
│ ├── email.blade.php
│ └── reset.blade.php
├── blogs/
│ ├── index.blade.php
│ ├── view.blade.php
│ └── share/
│ └── instagram.blade.php
├── contact/
│ └── index.blade.php
├── custom-page/
│ └── index.blade.php
├── directory/
│ ├── index.blade.php
│ └── includes/
│ └── _listings.blade.php
├── errors/
│ ├── 401.blade.php
│ ├── 403.blade.php
│ ├── 404.blade.php
│ ├── 419.blade.php
│ ├── 429.blade.php
│ ├── 500.blade.php
│ ├── 503.blade.php
│ ├── illustrated-layout.blade.php
│ ├── layout.blade.php
│ └── minimal.blade.php
├── faq/
│ └── index.blade.php
├── nfc/
│ └── index.blade.php
├── nfc-order/
│ └── index.blade.php
├── privacy-policy/
│ └── index.blade.php
├── refund-policy/
│ └── index.blade.php
├── terms-and-conditions/
│ └── index.blade.php
└── web-tools/
├── bcrypt-password-generator.blade.php
├── css-beautifier.blade.php
├── css-minifier.blade.php
├── dns.blade.php
├── emojies.blade.php
├── html-beautifier.blade.php
├── html-minifier.blade.php
├── ip.blade.php
├── js-beautifier.blade.php
├── js-minifier.blade.php
├── lorem-generator.blade.php
├── md5-password-generator.blade.php
├── qr-maker.blade.php
├── random-password-generator.blade.php
├── random-word-generator.blade.php
├── text-counter.blade.php
└── whois.blade.phpTemplate Root Files
GoBizOriginalServiceProvider.php
Registers the GoBiz Original template with the application. This file is part of the template setup and normally does not need to be changed for regular website customization.
routes/web.php
Contains the routes used by the website pages. Access this file when adding or modifying website routes.
template.json
Contains the template configuration and metadata. It is generally used for template-level configuration rather than regular website content changes.
Assets
The gobiz_original_assets folder contains the frontend assets used throughout the website.
css/
Contains the CSS files responsible for the website's appearance.
Use this folder when customizing:
- Colors
- Fonts
- Spacing
- Buttons
- Layouts
- Responsive design
- Animations
images/
Contains the images used by the template, including footer graphics.
Access this folder when adding, replacing, or modifying website images.
js/
Contains the JavaScript files used for frontend functionality.
Access this folder when customizing interactive elements such as sliders, animations, scrolling effects, alerts, and other JavaScript-based functionality.
webfonts/
Contains the web font and icon font resources used by the template.
Website Views
The Views/Website/ folder contains the main frontend files of the GoBiz Original website.
This is the primary location to access when changing the website structure, content, common components, and pages.
includes/
Contains common website components that are reused across multiple pages.
For example:
text
header.blade.php
footer.blade.php
announcements.blade.php
cookie.blade.php
maintenance-mode.blade.php
mobile-app-banner.blade.php
web-pop.blade.phpUse these files when changing common elements such as the header, footer, announcement bar, cookie notice, maintenance message, mobile app banner, or popup.
layouts/
Contains the common website layout.
text
Views/Website/layouts/index.blade.phpUse this file when making changes to the overall website structure or shared layout.
pages/
Contains the individual website pages.
Use the relevant page folder when customizing a specific page such as About, Contact, Blogs, Directory, FAQ, NFC, policy pages, authentication pages, or web tools.
Page Locations
| Page / Feature | File or Folder |
|---|---|
| Homepage | Views/Website/pages/index.blade.php |
| About | Views/Website/pages/about/ |
| Contact | Views/Website/pages/contact/ |
| Blogs | Views/Website/pages/blogs/ |
| Directory | Views/Website/pages/directory/ |
| FAQ | Views/Website/pages/faq/ |
| NFC | Views/Website/pages/nfc/ |
| NFC Order | Views/Website/pages/nfc-order/ |
| Login / Register | Views/Website/pages/auth/ |
| Cookie Policy | Views/Website/pages/cookie-policy/ |
| Privacy Policy | Views/Website/pages/privacy-policy/ |
| Refund Policy | Views/Website/pages/refund-policy/ |
| Terms & Conditions | Views/Website/pages/terms-and-conditions/ |
| Custom Pages | Views/Website/pages/custom-page/ |
| Error Pages | Views/Website/pages/errors/ |
| Web Tools | Views/Website/pages/web-tools/ |
Where to Make Website Changes
| Customization | Location |
|---|---|
| Header | Views/Website/includes/header.blade.php |
| Footer | Views/Website/includes/footer.blade.php |
| Announcement | Views/Website/includes/announcements.blade.php |
| Common components | Views/Website/includes/ |
| Overall layout | Views/Website/layouts/index.blade.php |
| Individual pages | Views/Website/pages/ |
| Website styling | gobiz_original_assets/css/ |
| JavaScript functionality | gobiz_original_assets/js/ |
| Images | gobiz_original_assets/images/ |
| Web fonts | gobiz_original_assets/webfonts/ |
| Website routes | routes/web.php |
Note: Before making any customization, please take a complete backup of the original template files. Customization involves modifying the template's original code, and incorrect changes may affect the website's layout or functionality. Keeping a backup allows you to restore the original template if required.
