@extends('website.includes.master') @section('title') Blogs @endsection @section('content') {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{-- --}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}}
@forelse($blogs as $b=>$blog)
{{ Carbon\Carbon::parse($blog->created_at)->format("M d , Y") }}

{!! Str::limit(strip_tags($blog->heading), 100) !!}

{!! Str::limit(strip_tags($blog->description), 150) !!}
@empty @endforelse
    @if ($blogs->lastPage() > 1) @if($blogs->currentPage() == 1)
  • @else
  • @endif @for ($i = 1; $i <= $blogs->lastPage(); $i++) @if($blogs->currentPage() == $i)
  • {{ $i }}
  • @else
  • {{ $i }}
  • @endif @endfor @if($blogs->currentPage() == $blogs->lastPage())
  • @else
  • @endif @endif
@endsection