@extends('public.layouts.default') @section('title') {{ ($meta != null) ? $meta->title : 'Rydeus | Blogs'}} @endsection @section('content')

Blogs

@include('public.includes.breadcrumb', ['class' => "fleet_sec"])
@if($blogs->count()) @foreach($blogs as $blog)
@if($blog->image==null) {{$blog->title}} @else {{$blog->main_image_alt}} @endif

{{$blog->title}}

{!! Str::words(strip_tags($blog->description),13) !!}

{{-- --}}
@endforeach @endif
@endsection