Skip to content

Commit

Permalink
final updates for release
Browse files Browse the repository at this point in the history
  • Loading branch information
awcodes committed Aug 1, 2023
1 parent 0dc3e97 commit e9436d8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
],
"require": {
"php": "^8.1",
"filament/filament": "^3.0@beta",
"spatie/laravel-package-tools": "^1.15",
"ext-intl": "*"
"ext-intl": "*",
"filament/filament": "^3.0",
"spatie/laravel-package-tools": "^1.15"
},
"require-dev": {
"laravel/pint": "^1.0",
Expand Down
4 changes: 2 additions & 2 deletions resources/views/widget.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class="gap-6"
>
@foreach ($data as $resource)
<x-filament::grid.column>
<x-filament::card
<x-filament::section
class="overlook-card rounded-xl overflow-hidden relative h-24 bg-gradient-to-tr from-gray-100 via-white to-white dark:from-gray-950 dark:to-gray-900"
>
<a
Expand All @@ -29,7 +29,7 @@ class="overlook-icon w-auto h-24 absolute left-0 top-8 text-primary-500 opacity-
<span class="overlook-name">{{ $resource['name'] }}</span>
<span class="overlook-count text-gray-600 dark:text-gray-300 absolute leading-none bottom-3 right-4 text-3xl font-bold">{{ $resource['count'] }}</span>
</a>
</x-filament::card>
</x-filament::section>
</x-filament::grid.column>
@endforeach
</x-filament::grid>
Expand Down

0 comments on commit e9436d8

Please sign in to comment.