styling contact show page

This commit is contained in:
Denis Duliçi
2022-07-25 16:19:49 +03:00
parent 0abc380af8
commit 9fad0657e9
14 changed files with 96 additions and 58 deletions

View File

@ -27,19 +27,25 @@
<div class="container">
<x-layouts.admin.header>
<x-slot name="title">
{!! !empty($title->attributes->has('title')) ? $title->attributes->get('title') : $title !!}
{!! ! empty($title->attributes->has('title')) ? $title->attributes->get('title') : $title !!}
</x-slot>
@if (!empty($status))
@if (! empty($status))
<x-slot name="status">
{!! $status ?? '' !!}
{!! $status !!}
</x-slot>
@endif
@if (!empty($favorite) || (!empty($favorite) && $favorite->attributes->has('title')))
@if (! empty($info))
<x-slot name="info">
{!! $info !!}
</x-slot>
@endif
@if (! empty($favorite) || (! empty($favorite) && $favorite->attributes->has('title')))
@if (! $favorite->attributes->has('title'))
<x-slot name="favorite">
{!! $favorite ?? '' !!}
{!! $favorite !!}
</x-slot>
@else
@php