@extends('masterGuest') @section('title', 'Berita') @push('scripts') @endpush @section('content')
@if ($news->isEmpty())
Pencarian kamu tidak ditemukan "{{ request('search') }}"
@else @foreach ($news as $item)

@if ($item->tag == '1') {{ 'SMA' }} @elseif ($item->tag == '2') {{ 'SMK' }} @elseif ($item->tag == '3') {{ 'SMA / SMK' }} @endif

{{ $item->title }}

{{ $item->author }} {{ \Carbon\Carbon::parse($item->created_at)->isoFormat('D MMMM Y') }}

{!! strip_tags(Str::limit($item->body, 200)) !!}
@endforeach
{{ $news->links() }}
@endif

Pencarian Berita

@endsection @push('scripts') @endpush