@extends('layouts.app') @section('head') @endsection @section('content')
@php $title_page = setting_item_with_lang("news_page_list_title"); if(!empty($custom_title_page)){ $title_page = $custom_title_page; } @endphp

{{ $title_page }}

@if($rows->count() > 0) @foreach($rows as $row) @include('News::frontend.layouts.details.news-loop') @endforeach @else
{{__("Sorry, but nothing matched your search terms. Please try again with some different keywords.")}}
@endif
@if($rows->total() > 0)
{{ __("Showing :from - :to of :total",["from"=>$rows->firstItem(),"to"=>$rows->lastItem(),"total"=>$rows->total()]) }}
@endif {{$rows->appends(request()->query())->links()}}
@include('News::frontend.layouts.details.news-sidebar')
@endsection