@extends('layouts.mainlayout') @section('title','Blogs'??$websitedata->default_metatitle) @section('canonical', url('blogs')??url('/')) @section('content')

Latest Blogs

@if(isset($blogs) && count($blogs)>0) @foreach($blogs as $blog)
{{-- Blog --}} Blog
  • {{$blog->created_by->fname.' '.$blog->created_by->lname}}
  • {{$blog->created_at->format('j F, Y')}}
{{$blog->title}}

{{Str::limit(strip_tags($blog->contents),50,'...')}}

More
@endforeach @else Coming Soon... @endif
{{----}}
@endsection