Discussion on Midone - Tailwind 4+ HTML Admin Dashboard Template

Discussion on Midone - Tailwind 4+ HTML Admin Dashboard Template

Cart 2,270 sales
Well Documented

Left4code supports this item

Supported

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

444 comments found.

Good item, I would like to have a discussion on developing a Admin template. please write me on jakjim@gmail.com for further discussion

Thank you.. :)

Hi,

Just found out that this template has laravel version. Is it possible to send me the webpack.mix.js that used in the laravel version?

Hi,

Sure, you can have it here.

mix.js('resources/js/app.js', 'public/dist/js') .sass('resources/sass/app.scss', 'public/dist/css') .options({ processCssUrls: false, postCss: [ tailwindcss('./tailwind.config.js') ], }) .autoload({ 'jquery': ['$', 'window.jQuery', 'jQuery'] }) .copyDirectory('resources/json', 'public/dist/json') .copyDirectory('resources/fonts', 'public/dist/fonts') .copyDirectory('resources/images', 'public/dist/images') .copyDirectory('node_modules/slick-carousel/slick/ajax-loader.gif', 'public/dist/css') .copyDirectory('node_modules/summernote/dist/font/summernote.woff', 'public/dist/fonts/summernote') .browserSync({ proxy: 'midone.test', files: ['resources/**/*.*'] });

You’re very welcome.. :)

Hi, how would I apply a date picker to a field which didn’t exist at page load? I am dynamically creating a form, and want to be able to reapply the date picker to all fields with the date picker class.

Many thanks

Luke

Hi Luke,

You can re-call the plugin after creating dynamic components by calling ”$(”#el”).daterangepicker(options)”. Check this documentation for the daterangepicker options.

https://www.daterangepicker.com/

hi, can you convert and release a wordpress version of this… its a very cool one.

Hi,

Thank you for your interest, but I am sorry We are not making templates for wordpress.. :(

Hello, sorry I’m not an expert in javascript. Question how can I use files or seperate files from Source/scr/js because app.js in dist/js is so huge specially I will not use components on specifica page. For example I have a page which I only wan’t to use chart.js is that possible?

Can you give me sample code on that? thank you

You’re very welcome.. :)

Best regards, Left4code Team

Sorry to bother you again, how can i make modal visible with jquery. I tried this code and its not working $(’#madal-name’).modal(‘show’);

Hi jeckx2,

You can use the following codes to show/hide/toggle modal.

// Show modal cash('#programmatically-show-modal').on('click', function() { cash('#programmatically-modal').modal('show') }) // Hide modal cash('#programmatically-hide-modal').on('click', function() { cash('#programmatically-modal').modal('hide') }) // Toggle modal cash('#programmatically-toggle-modal').on('click', function() { cash('#programmatically-modal').modal('toggle') })

Hope this helps.

Best regards, Left4code Team

In mobile view: Is it possible to make menu bar from left ? instead of top drop down ?

Hi,

No, We have no option for that so it will only appear from top.

Can you make left sidebar, will give charges for that. Please let me know. Thank you

Hi,

I am sorry we are currently working on the item main updates so we can’t handle any custom request.

I am trying to host my website, however it takes some seconds to load the css and js, I tried to minify those files, is there any other way to optimize the loading speed of these static files you gave us?

Hi,

Have you tried “yarn run production”?

I have never heard of that command, any guide on using it ?

You need to use the code from “Source” directory to doing this.

- First, install yarn from here: https://classic.yarnpkg.com/en/docs/install/#mac-stable - Then run “yarn install” to install the template dependencies. - And last “yarn run production” to minify all the assets.

You can check more about Laravel Mix (Compiling Assets tools we used) at link below.

https://laravel.com/docs/7.x/mix#running-mix

Hi please how can i get the sidebar to close after another link has been clicked, using it on an SPA thanks.

Hi,

With jQuery you can use this code: $('.side-nav').find('a').removeClass('side-menu--open') $('.side-nav').find('ul').removeClass('side-menu__sub-open') $('.side-nav').find('ul').removeAttr('style')

oh thanks

You’re very welcome.. :)

Hello, I was waiting for my monthly payment to make the purchase, when I went to see now the amount increased from $ 16 to $ 20, it is possible to make it for $ 16, because the cost of dola in Brazil is very high, apart from the paypal fee + $ 2 : /

Hi,

I am very sorry, it was a discount price and only applies to the first 300 sales. However, you still can take a look at this item.

https://themeforest.net/item/letz-laravel-admin-dashboard-starter-kit/26531442

It’s Midone Laravel template with HTML template included, so basically it is the same thing. The discount will end until the end of June.

Sorry that’s all we can give, maybe you can see other discount items on themeforest.. :)

Hi, i try to recompile and i get this error when running npm run dev, npm ERR! code ELIFECYCLE npm ERR! errno 1 npm ERR! MidOne@1.1.1 dev: `npm run development` npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the MidOne@1.1.1 dev script. npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

i try to remove node_modules, package lock file, yarn lock and install again, but this still happen, can you help me?

thanks

Hi,

Please update the “webpack.mix.js” with this code and try to recompile the assets.

const mix = require('laravel-mix'); /* |-------------------------------------------------------------------------- | Mix Asset Management |-------------------------------------------------------------------------- | | Mix provides a clean, fluent API for defining some Webpack build steps | for your Laravel application. By default, we are compiling the Sass | file for the application as well as bundling up all the JS files. | */ const tailwindcss = require('tailwindcss') mix.js('src/js/app.js', 'dist/js') .sass('src/sass/app.scss', 'dist/css') .options({ processCssUrls: false, postCss: [ tailwindcss('./tailwind.config.js') ], }) .autoload({ 'jquery': ['$', 'window.jQuery', 'jQuery'] }) .copyDirectory('src/json', 'dist/json') .copyDirectory('src/fonts', 'dist/fonts') .copyDirectory('src/images', 'dist/images') .copyDirectory('node_modules/slick-carousel/slick/ajax-loader.gif', 'dist/css') .copyDirectory('node_modules/summernote/dist/font/summernote.woff', 'dist/fonts/summernote') .browserSync({ proxy: 'midone.test', files: ['src/**/*.*'] });

i see, thanks dude

You’re very welcome.. :)

Let me know if it doesn’t work.

Hi do you have a sample implementing the styles of scss and postcss in react?

Hi,

I am sorry I never use react before. But every SASS files is imported in ”/resources/sass/app.scss”. You can check this TailwindCSS documentation to work with any Build Tools you are using with.

https://tailwindcss.com/docs/installation#build-tool-examples

How can I make the data-table to show the latest item on the list? because it always starts with the first item but I want to start with the last one

Hi,

The datatable used in the template is initated with default configuration, you can check it at ‘resources/js/datatable.js’.

You can add this config to make the rows ordered by it’s original DOM source.

$('#example').dataTable({ "order": [] });

Please check this link for more info, https://datatables.net/reference/option/order.

Don’t forget to run “yarn run watch” after making changes to the js files.

Hi, Request for a feature in future update if possible. Is it possible ti show loading icon till the page completely loads.

Hi,

You need to call this function “feather.replace()” everytime after adding new elements. It’s used to replace the icon HTML tag with the icon SVG elements.

Thanks, but is the feather js is global ? i can use in another js?

Hi,

Sorry for late respond, please update this file “src/js/feather.js” with the following code to make it global.

import feather from 'feather-icons' (function() { "use strict"; // Feather Icons feather.replace({ 'stroke-width': 1.5 }) window.feather = feather })()

And don’t forget to recompile the assets.

Hi.

I need to be able to dismis the alerts, however, this doesn;t work, even on the demo page.

Hi,

Which demo page you mean?

You can refer to this page http://midone.test/page/side-menu/modal. You can follow this section:

- “Programmatically Show/Hide Modal” https://prnt.sc/sxelgg

- “Modal With Close Button” https://prnt.sc/sxeln3

Its the side-menu-alert.html page. Icon & Dismiss Alerts section. Its not dismissing when clicking the x or outside the alert.

I’am very sorry, there is still no JS code for the alert.

So it’s just the layout without close functionalities. I will add this one to the next update.

I am not able to get the dashboard to run locally after install Yarn, then running yarn watch and yarn run dev

https://paste.ofcode.org/JAsiAn6ubhK3DpBeZNtuc6

Hi,

May I know your email? I will send you the template with installed dependencies.

Sent.. :)

My website stop being mobile adaptive, any help on that ?

Can I see it online?

Hello, I need help with customizing the data of the charts without losing the style, any guide for doing that?

Hi,

Sure, which chart did you want to customize?

Hello and good day. Love the work you have done so far, on your template, really awesome, well that’s why i purchased it. So i need to use your template in my react app and i need assistance. Do i import the dependencies into my package.json and build from there, if so then how do i start working on the html files part, after running the install command. If not then please how do i integrate your template into my react application?. Thanks a Bunch

Yes, something like that.. :)

Thanks, i have gotten it to work. You awesome

You’re very welcome.. :)

I need right-to-left support

Hi,

I am very sorry right-to-left is currently not available.. :(

Just a quick one, is there any landing page one can use with this dashboard template ?

Kindly recommend any external landing page that doesn’t involve a lot of work before it fits with this one

Hi,

We don’t have any landing page shiped with this version, can you give an example of the landing page content you expect?

Maybe I can add it in the next version.

That’ll be awesome! Something just simple like an horizontal menu bar and some basic landing page components that’ll help give an intro

Something like https://bootstrapmade.com/demo/Bikin/ but way simpler

Nice one, I will add it in the next version.. :)

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