@props([ 'concept' => null, 'state' => null, ]) @php $states = [ 'loading' => ['Loading', 'mdi-loading', 'secondary'], 'empty' => ['Empty state', 'mdi-inbox-outline', 'secondary'], 'completed' => ['Completed / generated', 'mdi-check-decagram', 'success'], 'validation' => ['Validation errors', 'mdi-alert-circle-outline', 'danger'], 'missing' => ['Missing evidence', 'mdi-shield-alert-outline', 'warning'], ]; [$label, $icon, $variant] = $states[$state] ?? [null, null, null]; @endphp
Design exercise @if($concept) {{ $concept }} @endif
@if($label) Previewing: {{ $label }} @endif
@foreach(['default' => 'Default','empty' => 'Empty','loading' => 'Loading','validation' => 'Validation','missing' => 'Missing evidence','completed' => 'Completed'] as $key => $lbl) {{ $lbl }} @endforeach