Discussion on Metronic | Tailwind, Bootstrap, React, Next.js, Vue, Angular, Laravel Admin Dashboard HTML Template

Discussion on Metronic | Tailwind, Bootstrap, React, Next.js, Vue, Angular, Laravel Admin Dashboard HTML Template

Cart 119,851 sales
Recently Updated
Well Documented

keenthemes supports this item

Supported

This author's response time can be up to 1 business day.

12208 comments found.

Hello, First i just got this theme.

How can i make use of this theme in my existing laravel 8 project? If not avaliable.

How can i build my own theme from reading the docs eg I can’t find anything about aside and menus and etc

Hi :)

For the existing laravel 8 project, you may use the HTML version. You can integrate the assets (js/css) and make the layout base from HTML file.

You can also use partial files by download it from layout builder page;

https://preview.keenthemes.com/metronic8/demo1/layout-builder.html

Thanks

I wrote a gist for integration with rails (or any other framework) really https://gist.github.com/kamalptw/cad9cc02dc7d483aaa8f2e05ed2b8fc6 Please have a look

Hi :),

This is amazing. We will have a look further. Thanks for sharing this.

Regards, Sean

Where is the Tree Js in the last release i could not find it !!!

Could you share date please , I have release this Friday ,

Please we need the Js Tree ASAP !!!

Hi :),

Sure, we will try.

Regards. Seam

Hi, I am integrating metronic 8 + vue 3 + laravel 8. I got this error during install vuex-module-decorators via npm. How I can resolve this issue?

npm ERR! code ERESOLVE npm ERR! ERESOLVE unable to resolve dependency tree npm ERR! npm ERR! While resolving: undefined@undefined npm ERR! Found: vuex@4.0.2 npm ERR! node_modules/vuex npm ERR! vuex@”^4.0.0” from the root project npm ERR! npm ERR! Could not resolve dependency: npm ERR! peer vuex@”3” from vuex-module-decorators@1.0.1 npm ERR! node_modules/vuex-module-decorators npm ERR! vuex-module-decorators@”*” from the root project npm ERR! npm ERR! Fix the upstream dependency conflict, or retry npm ERR! this command with—force, or—legacy-peer-deps npm ERR! to accept an incorrect (and potentially broken) dependency resolution. npm ERR! npm ERR! See /root/.npm/eresolve-report.txt for a full report.

npm ERR! A complete log of this run can be found in: npm ERR! /root/.npm/_logs/2021-08-02T01_39_33_883Z-debug.log

Hi,

Have you followed our Vue+Laravel integration doc?

You do not need to install all dependencies manually, actually, you can just copy the example of package.json in doc and paste it into package.json in your app.

Delete your current node_modules folder and pacakge-lock.json and then execute npm install again.

Regards,
Lauris

hi, laravel + vue error ” Invalid configuration object. Webpack has been initialised using a configuration object that does not match the API schema. – configuration.optimization.splitChunks.cacheGroups[‘styles-public/css/app’] has an unknown property ‘type’. These properties are valid: object { automaticNameDelimiter?, automaticNameMaxLength?, automaticNamePrefix?, chunks?, enforce?, enforceSizeThreshold?, filename?, maxAsyncRequests?, maxInitialRequests?, maxSize?, minChunks?, minSize?, name?, priority?, reuseExistingChunk?, test? } – configuration.stats has an unknown property ‘preset’. These properties are valid: object { all?, assets?, assetsSort?, builtAt?, cached?, cachedAssets?, children?, chunkGroups?, chunkModules?, chunkOrigins?, chunks?, chunksSort?, colors?, context?, depth?, entrypoints?, env?, errorDetails?, errors?, exclude?, excludeAssets?, excludeModules?, hash?, logging?, loggingDebug?, loggingTrace?, maxModules?, moduleAssets?, moduleTrace?, modules?, modulesSort?, nestedModules?, optimizationBailout?, outputPath?, performance?, providedExports?, publicPath?, reasons?, source?, timings?, usedExports?, version?, warnings?, warningsFilter? ” It gave such an error even though I made the same document. Can you help me?

Hi,

Can you please attach the configuration of your webpack.mix.js?

It looks like you have errors in it. You can copy a valid configuration from our doc:

const mix = require('laravel-mix');
const path = require('path');

mix
.ts("resources/ts/app.ts", "public/js")
.vue({ version: 3 })
.webpackConfig({
    resolve: {
      alias: {
        '@': path.resolve(__dirname, 'resources/ts/src/')
      }
    }
  });

Also please make sure that you have installed all required dependencies.

Regards,
Lauris

I added it but still the same error, can you support via email(yilmazoktay124@gmail.com)?

Sure, we will reach you shortly via your email address. Thanks.

Theme demo do not work with angular!. Support service very slow!!!

Hi,

May I know what is your Metronic version and demo ? If you contacted our support via email please let us know your email address so we can double check your request. As per current we have related to all cases related to Angular.

Regards, Sean

Hi,

When will you complete which HTML components for React? May I know the components that you will never complete?

Hi :),

Thanks for your interest in Metronic!

Except jQuery plugins all static(HTML/SASS) and in-house(HTML/SASS/Typescript) components can be reused in React version. Please let us know your interested components and we will provide you more info.

For any further clarifications you can contact our support directly via support@keenthemes.com

Regards, Sean

Then will the following be added? Will it be added?

Metronic 8 (Bootstrap 5) React
  • Demo 2 – SaaS
  • Modals – Wizards
  • Apps – Calendar

Hi,

1) Demo2 should be available within the next Metronic 8 update.

2) Modals -> Wizards pages will took some time to finish we already have CreateAppModal, you can make others by referring to this existing modal and reuse html code from our html version.

Check file: demo1/src/app/pages/dashboard/_modals/create-app-stepper/CreateAppModal.tsx

3)Just created a task for full calendar integration, it should be ready and released during the few weeks.

Regards,
Lauris

I am not able to find nestable page

Hi :),

Thanks for your interest in Metronic.

The nestable plugin is no longer supported by the authors: We will check further and try to find a replacement.

Stay tuned for updates via https://twitter.com/keenthemes and https://www.instagram.com/keenthemes

Regards, Sean

How do I remove a modal by ts in vuejs?

Hi,

You can remove modal in your ts code using this example:

import bootstrap from "bootstrap/dist/js/bootstrap.min.js";

const myModal = new bootstrap.Modal(document.getElementById('myModal'))
myModal.hide()

Check official bootstrap 5 doc for more info.

Regards,
Lauris

Hello I have a modal loaded with livewire. But my js componant doesn’t load correctly in this modal. (Select2…) I guess i need to realod the javascript of the webpage to enable all js componant of this modal. But how can I do that ?

Hi :),

Thanks for your interest in Metronic and sorry for the late reply.

If you are using the HTML version of the theme please note that all components and 3rd-party plugins are initialized after page load automatically. This is how the classic pages work. For Metronic 8, to reinitialize all the stuff you will need to follow the below steps:

1) Reinitialize some most used components(Tooltip, Popover, Select2):

KTApp.init();

2) Reinitialize in-house components:

KTMenu.createInstances();
KTDrawer.cteateInstances();
KTSwapper.cteateInstances();
You can check other plugins and call their reinitialization methods accordingly: https://preview.keenthemes.com/metronic8/demo1/documentation/getting-started.html

if you need any further help please contact our support via support@keenthemes.com

Regards, Sean

I am using version 5.0.20. I want to know if the form validation plugin that was in version 4.0 is no longer provided. Will you support me later?

Hi :),

The previouse form validation plugin is no longer supported by the authors. Currently we use Premium FormValidation plugin https://preview.keenthemes.com/metronic8/demo1/documentation/forms/formvalidation/basic.html which is very powerful and extendable.

For any further clarifications please contact our support via support@keenthemes.com

Regards, Sean

hi dear,

why option of dark/light theme is not in page builder ? hope you can add it in builder options this will be great

also how can we see dark theme in rtl?

also option to search main menu (aside) items?

also dark mode for landing page?

thanks

Hi :),

Thanks for your interest in Metronic.

The layout builder is used for HTML manipulation only.

The Dark Mode requires special setup as explained here https://preview.keenthemes.com/metronic8/demo1/documentation/getting-started/dark-mode.html

If you need any further clarifications please do let us know.

Regards, Sean

Hi keenthemes,

As we needed some non copyright photo for persons to demo for our client, We found a great ressource on the net for that, and they are AI generated photo for all ages and gender …. and they are free of use even for commercial use.

As Metronic use persons pictures, We thought You could be interesting on, here’s the link : https://generated.photos/faces

Hope you find it usefull,

Thank you

Hi :),

Thanks for sharing this. We will check it out.

Regards, Sean

Hi :),

Thanks for your interest in Metronic. We are working on the pending demos and Demo 7 should be out soon.

Stay tuned for updates via https://twitter.com/keenthemes and https://www.instagram.com/keenthemes

Regards, Sean

Hi, when do you estimate Demo 7 – Trendy Dashboard for Bootstrap 5 to complete?

Please check metronic 8 landing page, sidebar items are not clickable and does not work after we scroll down.

Hi :),

Good spot! It seems the issue is on mobile mode. You can quickly fix it by replacing the below HTML attributes in landing HTML code:

data-kt-place

to

data-kt-swapper

We will release this fix in the next update.

Regards, Sean

Thank you so much . It is working now.

Thank you too for your quick feedback :)

Hi, is there any documentation on how to do the HTML + Laravel (Metronic 7)? The one that i found is Vue + Laravel Integration.

Ok, already found the solution. thank you for your awesome template.

Glad to hear that :) All the best with your projects!

Hi kenethemes,

It would be a great step when you release some new features, not just include it in documentation, but also in Demo as HTML page layout or whatever you call it, just to see and have an idea how it perform.

NB : Many times, we were able to include features just by seeing it in metronic, but in documentation was little bit chalenging..

thank you.

for example I tried to implement Toaster, I was little confusing !..

But if it was in a page in Metronic8, I could see how thing are done from the loading to the show (all the process).

I know that the doc can lead you to accomplish everything but .. I’m like majority and everybody else on the net, “Learning by example”. LoL

Thank you

Hi :),

Thanks for the suggestion. We will add real world examples, such as apps and pages to showcase those features that we added into the documentation.

Regards, Sean

Appreciate all these updates. Would you be able to point me in the right direction for the dark switch on demo 2? Thanks :)

Hi :),

You can refer to the Dark Mode setup documentation here https://preview.keenthemes.com/metronic8/demo2/documentation/getting-started/dark-mode.html

If you need any further help please contact our support at support@keenthemes.com

Regards, Sean

Hello, the html version seems to be the main version of the theme.

The react version has all the components of the html version?

I am codding in react. I saw the demo 1 of the react version and the are a lot of pages and components missing comparing with the demo 1 of the html version. Thanks

Hi :),

Thanks for your interest in our theme Metronic.

The HTML version is the base version and it mostly uses jQuery plugins. However all non-jquery code from the HTML version can be reused in the React version. We will add more feature to the React version in upcoming updates.

Stay tuned for updates via https://twitter.com/keenthemes and https://www.instagram.com/keenthemes

Regards, Sean

Hi, Your Vue3 template in Metronic8 was released as some of the first along with the html version – The React template was released some time later, and yet the vue template seems much more incomplete than the React version? No menu bar, no aside, no header, no toolbar.. not much, really? How come the Vue version was left half done while the react version seems more complete?

Hi :),

Thanks for your interest in Metronic. Metronic v8 Vue complete and even has more features comparing to the React version. Please check all available versions here and compare: https://keenthemes.com/metronic/

The latest Vue version you can check here https://preview.keenthemes.com/metronic8/vue/demo1/

If you need any further clarifications please contact our support via support@keenthemes.com

Regards, Sean

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey