@extends('web.layouts.layout') @section('content')
@if($articles->count()) @foreach($articles as $article)
@include('web.articles._article_card')
@endforeach @else
{{ __('general.no_results') }}
@endif
@if($articles->hasPages()) {{ __('main.more') }} @endif
@endsection @push('stack_scripts') @endpush