@extends('site.layouts.app') @section('content')
@foreach($posts as $post)
@if(isFileExist($post->image, $result = @$post->image->medium_image)) {!! $post->title !!} @else {!! $post->title !!} @endif
@if($post->post_type=="video")
video-icon
@elseif($post->post_type=="audio")
audio-icon
@endif

{!! \Illuminate\Support\Str::limit($post->title, 65) !!}

{!! strip_tags(\Illuminate\Support\Str::limit($post->content, 120)) !!}

@endforeach
@if($posts->count() != 0)
Image
@endif
@include('site.partials.right_sidebar_widgets')
@endsection