mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-05-18 06:37:28 +08:00
admin add claim
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
<x-filament::page :widget-data="['record' => $record]" class="filament-resources-view-record-page">
|
||||
<div class="">
|
||||
<table class="table table-fixed text-left border-spacing-y-2 border-collapse divide-y w-full">
|
||||
<tbody>
|
||||
@foreach($cardData as $value)
|
||||
<tr class="">
|
||||
<th class="border-spacing-3">{{ $value['label'] }}</th>
|
||||
<td class="border-spacing-3">{!! $value['value'] !!}</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
@if (count($relationManagers = $this->getRelationManagers()))
|
||||
<x-filament::hr />
|
||||
|
||||
<x-filament::resources.relation-managers :active-manager="$activeRelationManager" :managers="$relationManagers" :owner-record="$record" />
|
||||
@endif
|
||||
</x-filament::page>
|
||||
Reference in New Issue
Block a user