- <div class="ui-empty">
- <div class="rounded-full bg-slate-100 p-3 text-slate-500">
- {!! $icon ?? '<svg class="h-6 w-6" viewBox="0 0 24 24" fill="none" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" /></svg>' !!}
- </div>
- <div>
- <div class="ui-empty-title">{{ $title ?? '暂无数据' }}</div>
- @if(!empty($description))
- <div class="ui-empty-desc">{{ $description }}</div>
- @endif
- </div>
- @if(!empty($action))
- <div>
- {{ $action }}
- </div>
- @endif
- </div>
|