If you find this website useful, your sponsorship would greatly support its ongoing development and maintenance. Learn more

Modal

To create a modal use the modal container:
<x-modal> ... </x-modal>

Inside the container:

Set the trigger to open the modal:

<x-slot name="trigger">
    <button @click="on = true" class="text-primary">
        Open Modal
    </button>
</x-slot>

Set the modal title:

<x-slot name="title">The Modal Title</x-slot>

Set the modal body:

<x-slot name="content">The Body</x-slot>

Set the modal footer:

<x-slot name="footer">The Footer</x-slot>

To change the classes edit the blade component at:
resources/views/components/modal.blade.php

Example:

© 2025 Laravel AdminTW. All rights reserved.

Built by David Carr