@extends('layouts.home') @section('title', $head['title']) @section('keywords', $head['keywords']) @section('description', $head['description']) @section('content')
@if(Str::isTrue(config('bjyblog.breadcrumb')))
{{ Breadcrumbs::render() }}
@endif @if(Str::isFalse(config('bjyblog.breadcrumb')) && !empty($tagName))

{!! translate('others.article_with_tag', ['tag' => $tagName]) !!}

@endif @if(Str::isFalse(config('bjyblog.breadcrumb')) && request()->has('wd'))

{!! translate('others.search_article', ['word' => clean(request()->input('wd'))]) !!}

@endif @foreach($articles as $article)

{{ $article->title }}

{{ $article->description }}
{{ translate('Read More') }}
@endforeach
{{ $articles->appends(['wd' => request()->input('wd')])->links('vendor.pagination.bjypage') }}
@endsection