Merge pull request #2515 from brkcvn/master

Code refactoring for Report & Toggle component
This commit is contained in:
Burak Civan 2022-07-05 11:21:13 +03:00 committed by GitHub
commit 0e97909edb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 9 deletions

View File

@ -43,12 +43,12 @@
<div class="ltr:ml-2 rtl:mr-2">
<h2 class="mb-1">
<x-link.hover group-hover>
{{ $report->name }}
{!! $report->name !!}
</x-link.hover>
</h2>
<span class="text-black-400 text-sm">
{{ $report->description }}
{!! $report->description !!}
</span>
</div>
</x-link>

View File

@ -7,7 +7,7 @@
v-if="{{ $attributes['show'] }}"
@endif
>
<x-form.label for="{{ $name }}" {{ $attributes->merge($custom_attributes) }}>{!! $label !!}</x-form.label>
<x-form.label for="{{ $name }}">{!! $label !!}</x-form.label>
<div class="flex items-center mt-1">
@if (empty($attributes['disabled']))

View File

@ -1,10 +1,6 @@
<div class="flex flex-wrap lg:flex-nowrap items-center justify-between my-16">
@foreach ($reports as $report)
<x-link href="{{ route('reports.show', $report->id) }}"
@class([
'w-6/12 lg:w-2/12 text-center px-3 group',
'border-r border-gray-300' => ($loop->count == 6 && $loop->last) ? false : true,
])
<x-link href="{{ route('reports.show', $report->id) }}" class="w-6/12 lg:w-2/12 text-center px-3 group {{ ($loop->count == 6 && $loop->last) ? '' : 'border-r border-gray-300' }}"
override="class"
>
<span class="material-icons-outlined text-4xl transition-all text-black-400">
@ -13,7 +9,7 @@
<div class="h-10 font-medium text-sm mt-2">
<x-link.hover group-hover>
{{ $report->name }}
{!! $report->name !!}
</x-link.hover>
</div>
</x-link>