{primary} Eventmie Pro publishes its config file at
config/eventmie.php.
Easily tailor your Eventmie Pro or FullyLoaded installation to your business needs. This guide covers all essential configuration options, best practices, and professional tips to ensure your platform is secure, scalable, and ready for global audiences.
Control whether Eventmie Pro runs at your domain root (e.g. example.com) or under a subdirectory (e.g. example.com/events). This is essential for integrating with existing Laravel sites or customizing your admin panel URL.
'route' => [
'prefix' => 'event-website', // Main site prefix
'admin_prefix' => 'secret-admin', // Admin panel prefix
],
{info} For multi-site or white-label setups, use unique prefixes for each deployment.
Eventmie Pro supports global audiences with multi-language and RTL support. Add or remove languages from the dropdown by editing the locales array:
'locales' => [
'en', 'ar', 'de', 'fr', 'hi', 'it', 'ja', 'nl', 'ru', 'zh_CN', 'zh_TW',
],
{success} All translations are stored in
resources/lang/vendor/eventmie-pro.
Eventmie Pro auto-detects RTL languages from the rtl_langs list and switches the UI direction. Add any new RTL language codes here:
'rtl_langs' => [
'ar', // Arabic
'fa', // Persian
'he', // Hebrew
'ms', // Malay
'ur', // Urdu
'ml' // Malayalam
],
Set your default site language. Ensure it exists in the locales array.
'default_lang' => 'en',
{primary} Edit translations in
resources/lang/vendor/eventmie-pro/<lang>/em.php.
Duplicate the en folder in resources/lang/vendor/eventmie-pro and rename it to your new language code (e.g. ro for Romanian).
Romanian language. Simply duplicate en folder and rename duplicated folder to ro.resources
│
├── lang
├── vendor
├── eventmie-pro
├── en
└── ro
em.php file.Repeat for resources/lang/vendor/voyager for admin panel translations.
Romanian language. Simply duplicate en folder and rename duplicated folder to ro.resources
│
├── lang
├── vendor
├── voyager
├── en
└── ro
locales array in config/eventmie.php.
'locales' => [
'en',
'ro',
.
.
],{success} Find more admin translations at Voyager Translations
resources/lang/vendor/eventmie-pro/ and resources/lang/vendor/voyager/.locales array.Run:
php artisan eventmie-pro:translate-admin-panel