install
This commit is contained in:
27
resources/views/vendor/filament-schemas/components/empty-state.blade.php
vendored
Normal file
27
resources/views/vendor/filament-schemas/components/empty-state.blade.php
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
@php
|
||||
$description = $getDescription();
|
||||
$footer = $getChildSchema($schemaComponent::FOOTER_SCHEMA_KEY)?->toHtmlString();
|
||||
$heading = $getHeading();
|
||||
$headingTag = $getHeadingTag();
|
||||
$icon = $getIcon();
|
||||
$iconColor = $getIconColor();
|
||||
$iconSize = $getIconSize();
|
||||
@endphp
|
||||
|
||||
<div
|
||||
{{
|
||||
$attributes
|
||||
->merge($getExtraAttributes(), escape: false)
|
||||
->class(['fi-sc-empty-state'])
|
||||
}}
|
||||
>
|
||||
<x-filament::empty-state
|
||||
:description="$description"
|
||||
:footer="$footer"
|
||||
:heading="$heading"
|
||||
:heading-tag="$headingTag"
|
||||
:icon="$icon"
|
||||
:icon-color="$iconColor"
|
||||
:icon-size="$iconSize"
|
||||
/>
|
||||
</div>
|
||||
Reference in New Issue
Block a user