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, do we need to run any npm compile (does this template include any vue etc)? Or it is simply based on blade? If it is only blade, is what I am looking for.

Hi there,

Thank you for reaching out to us,

Yes, we use Laravel Vite for asset bundling.
https://laravel.com/docs/9.x/vite

For this version we don’t use Vue or React, we only use blade.

Hi, I am not able to use modal programmatically (I am using last version of the template, with vite).

When I use this code (at the end of a file):

const modalAdd = tailwind.Modal.getInstance(document.querySelector(”#modal-id”));

I get this error: tailwind is not defined

I checked all files of the template, and it seems there are no errors.

Hi there,

Thank you for reaching out to us,

Please make sure to use `@section(‘script’)` directive for the js code. Please check the link below.
https://i.imgur.com/U1Or1qM.png

The problem seems to be the page is loaded before the file bootstrap.js is fully loaded. So if you use packages inside page you get error cause they are not defined yet.

Hi,

Sorry for the late reply,

The `@section(‘script’)` directive will move the js script to the end of the file, so the `modal` js code will definitely load.

You can see an example on the login page ”/resources/views/login/main.blade.php”.

https://i.imgur.com/gEYnE66.png

Can you please tell me how to use Laravel language file in midone JS files? is there any example.

Hi there,

Thank you for reaching out to us,

Sorry but I’m not sure I fully understand your question, can you provide more details on this?

Hi not sure why all my questions on support are being ignored

Is there Laravel 9 and Vue setup guide? what is required to get any information on the setup? If I buy the Vue 3 version is it possible for your team to set it up?

I have sent a couple of emails, but no reply, I ask questions here a couple of times no reply, your team will answer other questions and totally ignore my question

even to reply you need to do this or it cost this, no reply at all, or you are on vacation?

Hi,

where can I find the XD design files? Looks like they are not in the downloaded ZIP file…

Thanks you

Hi there,

Sorry for the late reply,

Unfortunately, the XD design files are currently only available in Rubick (the first variant of Midone).

This is an amazing theme, really really good.

Please little guidience

I am upgrading our application to Laravel 9 and vite our front end is Vue, I am getting this error

```node_modules\@left4code\tw-starter\dist\css\_form-inline.css:15:5: @apply is not supported within nested at-rules like @include. You can fix this by un-nesting @include.```

Please if you can give some pointers or heads up I will really appreciate Or by chance, if there is a demo with Vue setup I can reference it from there (datrippletnet@gmail.com)

Thanks

Is there a solution for me or no? why ignore my question? i asked a questioned 1 month ago no reply and now still ignore ?

Hi, I have installed the panel, and I’m getting an infinite error

_vite_ping 404 (Not Found)

Hi,

Can you send step-by-step to reproduce the issue?

Hi,

Why tom select won’t work with wire:model?

Thanks

How I re init the tom select?

Hi there,

Sorry for the late reply,

This is because tom-select is not a pure HTML component, so you need to create a wrapper in order to work with Livewire. Maybe the following link can help.

https://forum.laravel-livewire.com/t/using-livewire-with-select2-selectpicker/18

Please check this file to see the tom-select initialization ”/resources/js/tom-select.js”.

Hello Is it supporting RTL ?

Hi there,

Unfortunately, we currently don’t support RTL version.

what does it mean ”@extends(’../layout/’ . $layout)”?

Hi,

Thank you for reaching out to us,

Please check the following documentation.
https://laravel.com/docs/9.x/blade#extending-a-layout

Unable to locate file in Vite manifest: resources/js/edit-profile.js. on localhost it seems to work fine, but on live server @vite js specific to individual blade throws error.

Hello

Please the best way to disable animation on enigma top menu, i tried removing intro, the alignment was off

I just want to turn off animation on the top menu for enigma

Please advise

Thank you

hello masters. I am a customer of Midone. when will there be a laravel jetstream inertia svelte version?

I really need this, I would be very happy if it was there.

Hi,

Sorry for the late reply,

Unfortunately, we don’t have any plans to make an Inertiajs version yet.

Hey, the register form is not connected. Your HTML looks different than the Laravel Breeze I am used to. How do I get the register form to submit when I click the register button? I don’t see how you are doing on Login or I would just copy it. There is no <form> for <submit> feature. So I’m not sure how to get the HTML to submit the form. Any guidance would be appreciated.

Hi,

Please check this file for register page “login-light-register.html” or ”/resources/views/pages/register.blade.php” in Laravel version.

You can add the form tag like below.
https://i.imgur.com/dg9peSh.png

We’re using ajax on our sample login form so we don’t really need a submit button and regular form structure.

I have some questions. This template says Laravel 9. Does it support ViteJS and TailsindCSS? Also, can it be easily added to an existing Laravel 9 application? Or does it require me to use your version of Laravel? Also, what package manager does it require (Yarn or npm)?

I don’t see the instructions for npm. I’m not really a front end guy but I was using Breeze previously which was built on npm so I already have it installed. Can you give me some guidance on how to use nmp with your template?

I think I figured it out. I can just replace yarn with npm. Right?

Hi,

Sorry for the late reply,

Yes, you can replace Yarn with NPM. It’s just that the command may be slightly different.

You can also use breeze with Yarn.

I like your Midone – Laravel 9 Admin Dashboard Template + HTML Version template, but I see that with every change in menu option, the whole page is refreshed including the top and sidebar menu. Is there any way to change this behavior?

Hi there,

Thank you for reaching out to us,

Unfortunately, each layout menu extends a different blade layout file, so it will require reloading to change pages.

Hello Team,

Today, I have a fresh installation for /Midone Laravel/Laravel Version/Rubick v4.0.9/Source

However, whenever I run npm run build, this returns; “[WARNING] CSS nesting syntax cannot be used outside of a style rule [invalid-@nest]”

see screenshot below; https://snipboard.io/bmg0qW.jpg

Have you encountered the same? If yes, do you have a suggestion on how to go about this?

Hi,

Please run `yarn add @left4code/tw-starter` to update dependencies. Let me know if the warning still appears.

Thank you team. Working now

Glad to help.. :)

Hi, how can I use Notifications after a user is saved in Laravel?

Hi there,

Thank you for reaching out to us,

Please add the following lines to ”/resources/js/bootstrap.js”.


// Load plugins
import helper from "./helper";
import axios from "axios";
import * as Popper from "@popperjs/core";
import dom from "@left4code/tw-starter/dist/js/dom";

// Add this line
import Toastify from "toastify-js";

// Set plugins globally
window.helper = helper;
window.axios = axios;
window.Popper = Popper;
window.$ = dom;

// Add this line
window.Toastify = Toastify;

// CSRF token
let token = document.head.querySelector('meta[name="csrf-token"]');
if (token) {
    window.axios.defaults.headers.common["X-CSRF-TOKEN"] = token.content;
} else {
    console.error(
        "CSRF token not found: https://laravel.com/docs/csrf#csrf-x-csrf-token" 
    );
}

Now, you can access the Toastify plugin from your blade file.


@section('script')
    <script type="module">
        (function () {
             Toastify({
                 text: "Logged in!",
                 duration: 3000
              }).showToast();
         })()
    </script>
@endsection

Hope this helps.

Hi. I’m using pagination, but when I put the links tags on the blade page, it show the results next to the buttons. In my controller have:

public function index() { $users = User::paginate(5);

return view('pages/users/index', compact('users'));
}

and the view:

{{ $users->links() }}

but when the page render the page number buttons, it show the legend of the results: “Showing 1 to 5 of 10 results” next to these buttons. How can i remove that legend? i just only want to show the buttons of every page.

Hi there,

Thank you for reaching out to us,

I think it’s more related to Laravel issue than theme issue, please check this link to customize the pagination view.
https://laravel.com/docs/9.x/pagination#customizing-the-pagination-view

Hello! why cant i use {{route(‘myroute’)}} on my blade

please check my email. thankyou!

Hi,

Can you resend your email? Looks like we’ve already replied.

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