@extends('layouts.front') @push('css') @endpush @section('content')

@lang('Our Articles')

@lang('See Our Latest Articles & News')
@if (count($blogs) > 0)

@lang('Latest News')

@lang("We post regulary most powerful articles for help and support.")

@endif
@if (count($blogs) == 0)

{{__('No Blog Found')}}

@else @foreach ($blogs as $key=>$data)

{{ Str::limit($data->title,30) }}

{{ Str::limit(strip_tags($data->details,100)) }}

@lang('Continue')
@endforeach @endif
@if($blogs->hasPages()) {{ $blogs->links() }} @endif
@includeIf('partials.front.cta') @endsection @push('js') @endpush