Skip to content

Commit

Permalink
fix nickname bug
Browse files Browse the repository at this point in the history
  • Loading branch information
OniiCoder committed Feb 5, 2024
1 parent d833450 commit 73bbfef
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions resources/views/models/depot-orders/form.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<x-slot name="actions">
@include('lego::models._includes.forms.page-actions')
</x-slot>
<x-lego::feedback.errors class="sh-mb-4" />
<x-lego::feedback.errors class="sh-mb-4"/>

<x-fab::layouts.main-with-aside>
<x-fab::layouts.panel>
Expand Down Expand Up @@ -83,13 +83,15 @@ class="sh-mt-4"
x-sortable.products.item="{{ $data->id }}"
>
<x-fab::lists.stacked.grouped-with-actions
:title="$data?->driver?->name . '(' . $data?->driver->nickname . ')'"
:title="$data?->driver?->name . '(' . $data?->driver?->nickname . ')'"
description="{{ $data->updated_at->toFormattedDateString() }} | {{ $data->status }}"
>
<x-slot name="avatar">
<div class="flex">
<x-fab::elements.icon icon="dots-vertical" x-sortable.products.handle class="sh-h-5 sh-w-5 sh-text-gray-300 sh--mr-2" />
<x-fab::elements.icon icon="dots-vertical" x-sortable.products.handle class="sh-h-5 sh-w-5 sh-text-gray-300 sh--ml-1.5" />
<x-fab::elements.icon icon="dots-vertical" x-sortable.products.handle
class="sh-h-5 sh-w-5 sh-text-gray-300 sh--mr-2"/>
<x-fab::elements.icon icon="dots-vertical" x-sortable.products.handle
class="sh-h-5 sh-w-5 sh-text-gray-300 sh--ml-1.5"/>
</div>
</x-slot>
<x-slot name="actions">
Expand Down Expand Up @@ -121,7 +123,7 @@ class="sh-mt-4"
<option value="CANCELED">CANCELED</option>
</x-fab::forms.select>

@include('pamtechoga::models.components.timestamp')
@include('pamtechoga::models.components.timestamp')
</x-slot>

</x-fab::layouts.main-with-aside>
Expand Down

0 comments on commit 73bbfef

Please sign in to comment.