Card
Card component.
Card, Personalization Blocks
Example:
// AppServiceProvider, "boot" method. TallStackUi::customize() ->card() ->block('block', 'classes');
WARNING!
You are browsing the docs for an old version of TallStackUI. Consider upgrade your project to TallStackUI v3.
<x-card> TallStackUI</x-card>
<x-card> <x-slot:header> Raw HTML content </x-slot:header> TallStackUI</x-card> <!-- or --> <x-card header="TallStackUI"> TallStackUI</x-card>
<x-card header="TallStackUI" minimize> TallStackUI</x-card> <!-- or --> <x-card minimize> <x-slot:header> TallStackUI </x-slot:header> TallStackUI</x-card>
You can also mount as minimized:
<x-card header="TallStackUI" minimize="mount"> TallStackUI</x-card>
<!-- Top position --><x-card image="https://picsum.photos/750/300"> TallStackUI</x-card> <!-- Bottom position --><x-card position="bottom" image="https://picsum.photos/750/300"> TallStackUI</x-card>
<!-- Accepted colors: primary, secondary, and ANY other TailwindCSS color. --> <!-- Normal --><x-card header="TallStackUI" color="primary"> TallStackUI</x-card> <!-- Light Variation --><x-card header="TallStackUI" color="primary"> TallStackUI</x-card> <!-- Border Only --><x-card header="TallStackUI" color="primary" bordered> TallStackUI</x-card>