styling contact show page
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user