Skip to content

Commit

Permalink
Full width for dashboard orders
Browse files Browse the repository at this point in the history
  • Loading branch information
Raccoon254 committed Jun 17, 2024
1 parent 7ac914e commit ce8f668
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/views/dashboard.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ class="btn btn-md btn-ghost ring ring-gray-50 mt-6">
<i class="fas btn btn-circle btn-sm bg-white text-blue-500 btn-ghost hover:text-white hover:ring ring-white fa-calendar-alt"></i>
</div>

<div class="orders">
<div class="item overflow-scroll mt-4">
<div class="orders w-full">
<div class="item w-full overflow-scroll mt-4">

@php
$groupedOrders = $orders->groupBy(function($order) {
Expand All @@ -95,7 +95,7 @@ class="btn btn-md btn-ghost ring ring-gray-50 mt-6">
@endphp

@foreach($groupedOrders as $date => $ordersOnDate)
<div class="day mt-4">
<div class="day w-full mt-4">
<span class="text-sm text-gray-200">
{{ $date }}
</span>
Expand Down

0 comments on commit ce8f668

Please sign in to comment.