A modern, reusable, and customizable UI package for Laravel applications — developed and maintained by Iquesters.
This package provides a unified layout structure, navigation system, and interface configuration for Laravel-based modular applications. It acts as the front-end foundation for many Iquesters packages, ensuring a consistent, clean, and responsive user interface.
The User Interface Package serves as the visual and layout layer for Iquesters modules. It includes ready-to-use templates such as headers, sidebars, module tabs, and dropdowns — all styled for scalability and responsiveness.
It allows developers to:
- Maintain consistent design across all Iquesters modules
- Configure layouts and navigation behavior easily
- Integrate seamlessly with other Iquesters packages
-
Install the package via Composer
composer require iquesters/user-interface
-
Run the migrations
php artisan migrate
-
Seed the default UI data
php artisan user-interface:seed
Once installed, the package automatically registers its layout and configuration.
- 🧱 Unified Layout System — Shared structure for headers, sidebars, and navigation
- ⚙️ Configurable via .env — Customize UI behavior without touching code
- 📱 Responsive Design — Optimized for both desktop and mobile
- 🔄 Dynamic Module Tabs — Automatically handles module navigation
- 🧩 Integration-Ready — Works seamlessly with other Iquesters modules
The package includes a config file located at config/userinterface.php.
You can override any setting using your .env file.
Defines which middleware are applied to your application layout.
USERINTERFACE_MIDDLEWARE="web,auth"Default: ['web', 'auth']
Specifies the default Blade layout used as your app’s shell.
USERINTERFACE_LAYOUT_APP="userinterface::layouts.app"You can change this if you have your own layout file.
Set your brand logo (URL or path).
USER_MANAGEMENT_LOGO="/images/logo.png"You can use:
- A full URL (e.g.,
https://example.com/logo.png) - A local path (e.g.,
/images/logo.png) - A package asset path (e.g.,
img/logo.png)
Choose your preferred navigation style.
USERINTERFACE_NAV_STYLE=minibarOptions:
minibar— vertical left sidebarheader— horizontal module tabs in header
Set how many modules appear before the rest go into a dropdown.
USERINTERFACE_MODULE_TABS=7Configure how the mobile bottom navigation behaves.
USERINTERFACE_MOBILE_BOTTOM_TABS=4
USERINTERFACE_MOBILE_FEATURED_TAB=null
USERINTERFACE_MOBILE_FEATURED_POSITION=centerUSERINTERFACE_MOBILE_FEATURED_TAB: Set a featured module (e.g.,dashboard)USERINTERFACE_MOBILE_FEATURED_POSITION:center,left, orright