@extends('site.layouts.app') @section('title', 'Trainings') {{-- SEO Start --}} {{-- SEO End --}} @section('content')

Trainings

@if (count($allblogs) > 0) @foreach ($allblogs as $item)
{{ $item->title}}

{{ $item->created_at->format('d') }} {{ $item->created_at->format('M') }}

{{ $item->title }}

{!! Str::limit(strip_tags($item->description), 150) !!}

@endforeach {{-- No blogs found message start --}} @else

No blogs found.

@endif {{-- No blogs found message End --}}
Load More

@endsection