@extends('layouts.front') @section('page_title', 'আর্কাইভ' . ' |' ) @section('extra_css') @endsection @section('extra_js') @endsection @section('main_content') ক্যাটাগরি @foreach(\App\WCategory::all() as $category) {{ $category->name }} @endforeach দেখুন সব সংবাদ দেখুন সব সংবাদ @foreach($posts->chunk(2) as $items) @foreach($items as $post) {{ $post->title }} Published: {{ $post->created_at }} {!! $post->excerpt !!} ...বিস্তারিত @endforeach @endforeach @unless(isset($_GET["postByCat"])) {!! $posts->links() !!} @endunless @endsection