# Basics
To create cards in the admin panel, use the moonshine::card
component.
<x-moonshine::card url="#" thumbnail="/images/image_1.jpg" :title="fake()->sentence(3)" :subtitle="date('d.m.Y')" :values="['ID' => 1, 'Author' => fake()->name()]"> <x-slot:header> <x-moonshine::badge color="green">new</x-moonshine::badge> </x-slot:header> {{ fake()->text() }} <x-slot:actions> <x-moonshine::link-button href="#">Read more</x-moonshine::link-button> </x-slot:actions></x-moonshine::card>
new
Praesentium et sint quos. Commodi molestiae nobis quo consequatur consequuntur voluptatem velit. Ea ex et in et itaque. Rerum quasi soluta aliquid vel at quod consequuntur.
Hic ullam et.
23.11.2024
ID: | 1 |
---|---|
Author: | Reynold Roob I |
# Overlay mode
The overlay
mode is available for the card.
<x-moonshine::card url="#" :overlay="true" thumbnail="/images/image_1.jpg" :title="fake()->sentence(3)" :subtitle="date('d.m.Y')" :values="['ID' => 1, 'Author' => fake()->name()]"> <x-slot:header> <x-moonshine::badge color="green">new</x-moonshine::badge> </x-slot:header> {{ fake()->text() }} <x-slot:actions> <x-moonshine::link-button href="#">Read more</x-moonshine::link-button> </x-slot:actions></x-moonshine::card>
new
Vel reprehenderit quae.
23.11.2024
ID: | 1 |
---|---|
Author: | Jerry Reichert |
# Image carousel
To add an images carousel to a card, you can add to thumbnail
parameter array of images.
<x-moonshine::card url="#" :overlay="true" :thumbnail="['/images/image_1.jpg', '/images/image_2.jpg']" :title="fake()->sentence(3)" :subtitle="date('d.m.Y')" :values="['ID' => 1, 'Author' => fake()->name()]"> <x-slot:header> <x-moonshine::badge color="green">new</x-moonshine::badge> </x-slot:header> {{ fake()->text() }} <x-slot:actions> <x-moonshine::link-button href="#">Read more</x-moonshine::link-button> </x-slot:actions></x-moonshine::card>
ID: | 1 |
---|---|
Author: | Jazmyne Schimmel |