@php $title = $blog->title; $metaTitle = $blog->meta_title ?: 'Nexxuz | Blog | ' . $blog->title; $metaDescription = $blog->meta_description ?: \Illuminate\Support\Str::limit(strip_tags($blog->title), 160); $canonicalUrl = $blog->canonical_url ?: route('blog.show', $blog->slug); $ogType = 'article'; $ogImage = !is_null($blog->getMedia('blog')->first()) ? $blog->getMedia('blog')->first()->getUrl() : asset('Nexxuz%20-%20Logo.png'); $ogImageAlt = $blog->title; @endphp @extends('layouts.app') @section('head') @endsection @section('schema') @endsection @section('content')

Blog

@if(!is_null($blog->getMedia('blog')->first())) {{ $blog->title }} @else {{ $blog->title }} @endif

{{ \App\Models\BlogCategory::find($blog->blog_category_id)?->name }}

{{ $blog->title }}

@endsection @section('script') @endsection