Discussion on Midone - Tailwind 4 Laravel 11 Admin Dashboard Template + HTML Version

Discussion on Midone - Tailwind 4 Laravel 11 Admin Dashboard Template + HTML Version

Cart 1,538 sales
Well Documented

Left4code supports this item

Supported

This author's response time can be up to 2 business days.

446 comments found.

Hi,

I message you before about vue integration.

Can you show me the steps?

Thanks

Hi sfmy,

We just replied to your previous email, kindly check it.. :)

Best regards, Left4code Team

Hello. I can’t disable intro animations. I have commented out intro sass file in app.scss like this: // @import ”~@left4code/tw-starter/dist/scss/intro”; then rebuildt the project with npm run dev.

But the animations are still there on every load. I use the icewall version for laravel.

Hi inviz,

Thank you for taking the time to contact us, I’ll be more than happy to help you.

Some animations are directly attached to the SASS file due to complexity and other reasons. For example. Menus, Wrappers.

To find it easily, you can search through this directory ”/resources/sass/components” with keyword ”@keyframes ” and remove all of them from search results.

Let me know if that still doesn’t work.

Best regards, Left4code Team

Hello. Thank you and yes, I found them. for future reference if someone else is having the same issues, I also had to change the opactiy for the css class .wrapper-box to 1, after removing the main content animations.

I changed the following line: @apply flex bg-theme-1 dark:bg-dark-8 opacity-80; to @apply flex bg-theme-1 dark:bg-dark-8 opacity-100; after removing the @keyframe at the bottom in this file: /resources/sass/components/_wrapper.scss

Hi inviz,

Thanks for your reply,

Thank you also for the comments will be very helpful.. :)

Best regards, Left4code Team

i got this warning in console: DevTools failed to load source map: Could not load content for http://localhost:3000/dist/zoom-vanilla.min.js.map: HTTP error: status code 500, net::ERR_HTTP_RESPONSE_CODE_FAILURE

how to update the version? $ yarn run prod $ npm run production > rubick@3.0.4 production > mix --production
2nd question: both of these not work .catch(error => { // reset to default button cash('#btn-updateProfile').html('<i data-feather="save" class="w-4 h-4 mr-2" /> Save').svgLoader() ----------------------------- // reset to default button cash('#btn-updateProfile').html('<i data-loading-icon="save" data-color="white" class="w-4 h-4 mr-2" /> Save').svgLoader() })

Hi sunnguon,

Unfortunately, since it’s just a template there’s no way to update the version by command.

So we need to replace the assets or dependencies manually to update the theme.

For the 2nd question, you need to use the feather js built-in function to initiate the SVG icon.

What you do above is a function for loading animation icons, not feather icons.

You can use the following code for feather icon: cash('#btn-updateProfile').html('<i data-feather="save" class="w-4 h-4 mr-2" /> Save') // Initiate feather icon plugin feather.replace({ "stroke-width": 1.5, });

Hope this helps.

Best regards, Left4code Team

there’s an error when using the function cash(”#delete-confirmation”) . modal(“hide”);

Hi zamcedi,

Thank you for taking the time to contact us, I’ll be more than happy to help you.

Can you send the error message? Screenshots would be great.

Best regards, Left4code Team

I’m experiencing some issues using the modal, as far as I noted, all “post-rendered” elements such icons and tail-select who are inside a modal, or html code parts received from axios are not rendering correct, the information itself is correct (text), but the icons for example are not visible. To fix the tail-select issue (inside modals the tail-select elements don’t display the placeholder, they are not rendered, I fixed that using a default text), using this: cash(document).ready(function() { cash(”.label-inner”).each(function () { if (cash(this).html().length === 0){ cash(this).html(‘Selecione…’); } }); });

Is there any fix for the icons issue? Or is my implementation that is incorrect?

Hi brenoglima,

Sorry for the late reply,

It’s actually an expected behavior since the plugin is initialized on the first page load.

So the simplest way to solve this is to re-initialize the plugin after you make the ajax call.

Please check the following example: <script> @section(‘script’) <script> cash(function () { axios.get(`/example`).then(res => { // Re-init Feather Icons feather.replace({ “stroke-width”: 1.5, }); @endsection </script>

// Re-init Tail Select
            cash(".tail-select").each(function () {
                tail(this, {});
            });
        })
    })
</script>

You may need to make used plugins globally accessible by attaching them to the window object.

For example the TailSelect plugin above. You can modify this file ”/resources/js/bootstrap.js” and add tail-select plugin like below. https://prnt.sc/13l08ls

Hope this helps.

Best regards, Left4code Team

I tried customizing the theme colors to have more of greenish appearance instead of blue but it’s proving difficult. Would be great if there was a way to easily change the primary color.

Hi xwiz,

Thank you for taking the time to contact us, I’ll be more than happy to help you.

You can follow the steps below to change the color.

Select the elements. https://prnt.sc/11ou5hj

Look for the background-color property. https://prnt.sc/11oubwn

Hover over the property and click the little arrow behind the value. https://prnt.sc/11ouha7

Then we will be directed to the elements. https://prnt.sc/11ouleg

Since tailwind converts the colors from HEX to RGBA we have to change the “var(—tw-bg-opacity)” string to “1” like below. https://prnt.sc/11ouvsv

https://prnt.sc/11ouy8n Open the color picker and change the RGBA color to HEX by clicking on the little arrow next to the box.

Then you can copy the HEX color, find and replace it in the “tailwind.config.js”.

Don’t forget to recompile the assets after making a change.

Best regards, Left4code Team

Hi; Do you think you will have a tall version or alpine.js instead of vue.js version in the future ?

Hi Angra-Mainyu974,

Thank you for reaching out to us.. :)

Unfortunately, we still don’t have plan to work with alpine.js.

Best regards, Left4code Team

I have a problem with the modal. The show part works perfectly but the hide part doesn’t work. The written code works but the hide part does not hide the modal. Can you give me some indication?

best regards https://prnt.sc/138gv8r https://prnt.sc/138gx3p

Hi DmElectronics,

Is there any errors in the console? Maybe we can find the issue from there.

Best regards, Left4code Team

I have no mistakes. cash (’# confirmationModal’). modal (‘hide’); does not work.

https://prnt.sc/13uxvht

HI DmElectronics,

Thank you for your reply,

Can you try placing the code below just before closing the modal? so it will look somtehing like this:

// Add this line console.log(cash("#confirmationModal")[0]) cash("#confirmationModal").modal("hide");

Let me know the result in console.

Best regards, Left4code Team

Tabular data, you say: The example code use GET API to retrieve the data, that’s why all the Tabulator initialization are initialized in js code.

Where does the it get the data from in the example? cell.getData().name for instance? I guess what we need to know is how can we swap this out for an eloquent collection?

Hi futureweb2,

Thank you for taking the time to contact us, I’ll be more than happy to help you.

You can check an example of the Tabulator data format at the following link: http://tabulator.info/docs/4.9/data#ajax-progressive

Hope this helps.

Best regards, Left4code Team

I did not find how to install Midone using NPM, please guide, how to install Midone with NPM.

Hi rama_euiinn,

Thank you for your reply,

We’ve found the problem you’re experiencing.

As the warning appears, the tiny-slider plugin uses a script that will be deprecated in the next version of dart-sass.

For now, you can ignore the message as it is only a warning and does not affect the compilation process.

You can check if we are currently using the latest version of tiny-slider so we will wait for the next version until the issue is patched.

https://github.com/ganlanyuan/tiny-slider

Or if you’re bothered by the warning, you can temporarily replace the tiny-slider plugin with another slider plugin.

Best regards, Left4cod Team

Okay thank you very much

You’re very welcome.. :)

Best regards, Left4code Team

Hi, I’m making a confirmation modal, it’s posssible do define some kind of “data-route” parameter on the who open the modal, so when user click confirm on modal it follows the link route passed?

Hi brenoglima,

Thank you for taking the time to contact us, I’ll be more than happy to help you.

Yes, it’s possible, you can show the modal programmatically and set the data-route property to define your route. Please check the following code.

// Show confirmation modal cash('#show-modal').on('click', function() { cash('#confirmation-modal').modal('show') // Set the data-route here, try to attach it somewhere on the modal element cash('#confirmation-modal').find('.modal-body').attr('data-route', 'http://example.com') }) // And when clicking on confirm button you can close the modal programmatically and get the data route defined before cash('#confirm-modal').on('click', function() { cash('#confirmation-modal').modal('hide') // Get the data-route here let dataRoute = cash('#confirmation-modal').find('.modal-body').data('route') // Redirect the page here })

Hope this helps.

Best regards, Left4code Team

Hi, are you using Inertia with this template?

Does it have some price that integration?

Hi cesarcruzc,

Sorry for the late reply,

Unfortunately, we don’t use inertia on this template and we are currently unable to provide template customization at this time.

Best regards, Left4code Team

Hello,

I am having issues running npm run dev on a fresh install of version 3.0.5

here is the output

warn – You have enabled the JIT engine which is currently in preview. warn – Preview features are not covered by semver, may introduce breaking changes, and can change at any time. [webpack-cli] Invalid configuration object. Webpack has been initialised using a configuration object that does not match the API schema. – configuration.optimization.splitChunks.cacheGroups[‘styles-public/dist/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.output.chunkFilename should be a string. -> The filename of non-entry chunks as relative path inside the `output.path` directory. – 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? }

Hi paperasse,

Thank you for taking the time to contact us, I’ll be more than happy to help you.

Can you try to update your Node & NPM version?

Then remove the “node_modules” directory and reinstall the dependencies.

Best regards, Left4code Team

Hello, could you explain me how to use your theme’s notifications and graphics? I am using Laravel 8 and theme in HTML Source version.

Best regards

Hi DmElectronics,

I’ve never experienced that. Can you send a screenshot of the compilation result?

I’m sorry. Everything works. My mistake.

You’re very welcome.. :)

Best regards, Left4code Team

Hi

How do I update it?
3.0.3> 3.0.5
I need to update the lightpicker.

Hi iisoft,

Sorry for the late reply,

You can update the litepicker plugin by reinstall it. Just run “yarn add litepicker”.

Then replace this file ”/resources/sass/components/_litepicker.scss” from the latest download package.

Hope this helps.

Best regards, Left4code Team

I have updated the litepicker but I still had the same error.

After executing litepicker in modal, litepicker is fixed when scrolling.

https://prnt.sc/135uhl6

Hi iisoft,

Looking at your problem, it doesn’t seem like it’s a litepicker problem. This is the expected behavior because when using modal, the scrolling content is not in the body element but in the ”.modal” class inside the modal component.

A simple way to get around this is to hide the litepicker plugin when scrolling modal content. You can change this file ”/resources/js/datepicker.js” by adding the code below.

document.querySelectorAll(".modal").forEach(function (e) { e.addEventListener("scroll", function () { litepicker.hide(); }); }); https://prnt.sc/13alpjm

Hope this helps.

Best regards, Left4code Team

good day friends. Just wanted to check if there are plans for additional pages for products, product details? There is a Point of Sale page but, something with a bit more details? Thank you

Hi jed1knyt,

Sorry for the late reply,

That’s a good idea, we will try to add this in the next release.. :)

Best regards, Left4code Team

Great to hear! Thanks

You’re very welcome.. :)

Best regards, Left4code Team

Hi a question. How can I disable the page reload animation? I am using laravel 8 and have installed thema in html. Thanks so much

HI DmElectronics,

Thank you for taking the time to contact us, I’ll be more than happy to help you.. :)

You can comment the line below: https://prnt.sc/10luqxr

From ”/src/sass/app.scss” to remove the animation.

Hope this helps.

Best regards, Left4code Team

When i execute > npm run dev receives the following error https://prnt.sc/12hze2z Please help me to sort this issue

Hi patrykpilek,

Thank you for taking the time to contact us, I’ll be more than happy to help you.

We found that there were problems with the current compiler version and some dependencies, especially with NPM.

https://github.com/JeffreyWay/laravel-mix/issues/2633

But it should work out well with Yarn.

However, we can still use NPM with the following steps.

- Add “webpack”: “^5.23.0” in package.json devDependencies

- rm -rf package-lock.json

- rm -rf node_modules

- npm install—force

Then run the compiler again with “npm run watch”.

Hope this helps.

Best regards, Left4code Team

Awesome dashboard! Are you planning to make a version on Laravel + Vuejs + Tailwind stack?

Hi kolesnikof,

Thank you for reaching out to us,

Unfortunately, we don’t have a plan to release Laravel + Vue version.

But if you need it you can use the vuejs version and we will help you to integrate it to a fresh laravel project.

It’s really simple (maybe less than 10 steps).

Hope this helps.

Best regards, Left4code Team

You’re very welcome.. :)

Is there a step-by-step guide to install the theme on an existing Laravel install? I’m guessing only the views (the resources folder), webpack, npm and yarn scripts (from root folder) are the only important things to add into an existing project?

Hi CptChaos,

We have already download the file and found out the problems, it’s because the postcss config here: https://prnt.sc/12zaqw6

At “resources/admin/webpack.mix.js” is not loaded. The configuration has been overridden with global postcss config from “postcss.config.js”.

So to fix the problem just remove the tailwindcss object from “postcss.config.js” like below. https://prnt.sc/12zavaz

Hope this helps.

Best regards, Left4code Team

Hi Left4Code!

Thank you so much for all your help! It’s working now! Much appreciated!

Kind regards, CptChaos

You’re very welcome, glad to help.. :)

Best regards, Left4code Team

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