{!! !empty($title->attributes->has('title')) ? $title->attributes->get('title') : $title !!}
        
    
    
        @stack('body_start')
        
            
                
                    {!! ! empty($title->attributes->has('title')) ? $title->attributes->get('title') : $title !!}
                
                @if (! empty($status))
                    
                        {!! $status !!}
                    
                @endif
                @if (! empty($info))
                    
                        {!! $info !!}
                    
                @endif
                @if (! empty($favorite) || (! empty($favorite) && $favorite->attributes->has('title')))
                    @if (! $favorite->attributes->has('title'))
                        
                            {!! $favorite !!}
                        
                    @else
                        @php
                            $favorite = [
                                'title' => $favorite->attributes->get('title'),
                                'icon' => $favorite->attributes->get('icon'),
                                'route' => !empty($favorite->attributes->has('route')) ? $favorite->attributes->get('route') : '',
                                'url' => !empty($favorite->attributes->has('url')) ? $favorite->attributes->get('url') : '',
                            ];
                        @endphp
                        
                            
                        
                    @endif
                @endif
                
                    {!! $buttons ?? '' !!}
                
                
                    {!! $moreButtons ?? '' !!}
                
            
            
                
                {!! $content !!}
            
            
        
        @stack('body_end')