RustyTrombone
Tailwind classes getting ignored in plugin view?
I am working on a plugin that shows some information in a grid, but no matter what I do, my Tailwind CSS classes are ignored.
<div
x-show="open"
x-on:click.outside="open = !open"
class="grid grid-cols-3"
>
@foreach ( $getItems() as $item )
<div
class="m-1">
{{ $item }}
</div>
@endforeach
</div>
I can use "grid-cols-7". I've added the file directly to the "content" array of the tailwind conf, still nothing.
Is there a way to use my own grid inside of my custom plugin? Ideally it would have been dynamic but I don't think that's possible.
12 replies
Resource not appearing in Menu
I have created too "Panels", "Customer" and "Admin".
In my "Admin" Panel, I'm trying to create a resource and show it in the menu - I thought this happened automatically but I think I'm doing something wrong. I've created a resource based off of my model, but it doesn't appear in the Admin Menu. All I have is "Dashboard".
Going to /admin/myresource - 404's. This is a fresh install
39 replies