@extends('frontend.layouts.master') @section('meta_title', $model->title . ' || ' . $setting->app_name) @push('custom_meta') @endpush @push('styles') @endpush @section('meta_title', $setting->app_name . ' | ' . $model->title) @section('contents')
img

{{ $model->title }}

{!! clean($model->description) !!}

@if(count($comments) > 0)

{{ count($comments) }} {{ __('Comments') }}

@endif
@foreach ($comments as $comment)
  • img
    {{ $comment->user->name }}
    {{ formatDate($comment->created_at) }}

    {{ $comment->comment }}


@endforeach
@auth

{{ __('Post a comment') }}

{{ __('Please keep your comment under 1000 characters') }}

@csrf
@if (Cache::get('setting')->recaptcha_status === 'active')
@endif

@else @endauth
@endsection @push('scripts') @endpush @push('scripts') @endpush