Copy list table layout outside the admin panel

I'm using the Table traits/interfaces and was wondering if it's possible to copy the demo layout When I render the form (2nd image) it looks different and there's way too much space wasted. So, is there a way to have the same (or similar) layout for my tables?
No description
No description
Solution:
Nvm it was the FiltersLayout option ... I'm dumb
Jump to solution
6 Replies
ChesterS
ChesterS10mo ago
Ideally i'd like something like this. Is there a way to control this?
ChesterS
ChesterS10mo ago
No description
ChesterS
ChesterS10mo ago
First time I see this. What exactly does it include? Is it tutorials of how to achieve the examples or does it include plugins etc?
SirFat
SirFat10mo ago
I haven't looked at their example in detail yet. In my scenario, I have a route to my live-wire component:
Route::get('/wizard', function () {
return view('wizard-signup');
});
Route::get('/wizard', function () {
return view('wizard-signup');
});
then in wizard-signup.blade.php
<x-app-layout>
<livewire:signup-wizard />
</x-app-layout>
<x-app-layout>
<livewire:signup-wizard />
</x-app-layout>
then in the view called by the signup-wizard component:
<form wire:submit="submit">
{{ $this->form }}
<!--<button type="submit">
Submit
</button>
-->
</form>
<form wire:submit="submit">
{{ $this->form }}
<!--<button type="submit">
Submit
</button>
-->
</form>
(in the form I have my own submit button as part of the wizard.).
Solution
ChesterS
ChesterS10mo ago
Nvm it was the FiltersLayout option ... I'm dumb