@extends('layouts.app') @section('title', $blog->title . ' — JobPortal') @section('content')
@if($blog->blogCategory){{ $blog->blogCategory->name }}@endif

{{ $blog->title }}

@if($blog->user){{ $blog->user->name }}@endif {{ optional($blog->published_at)->format('d M Y') }} {{ number_format($blog->views) }} views
@if($blog->thumbnail){{ $blog->title }}@endif
{!! nl2br(e($blog->content)) !!}
@if($related->count()) @endif
@endsection