@extends('lyt.app') @section('title', $menu->label) @section('content')

{{ $menu->label}}

  • Anasayfa
  • @foreach($breadcrumb as $item) @php $itemUrl = is_string($item['url']) ? url($item['url']) : $item['url']; @endphp
  • {{ $item['label'] }}
  • @endforeach
@foreach($news as $item)
avater By {{ config('app.name') }} {{ $item->created_at->format('d M, Y') }} {{-- Yorum sayısı varsa buraya eklenebilir --}}

{{ $item->title }}

{!! Str::limit(strip_tags($item->content), 250) !!}

Devamını Oku
@endforeach
{{ $news->links() }}
@endsection