@extends('layouts.front') @section('page_title', 'all news' . ' |' ) @section('extra_css')
@endsection @section('extra_js') @endsection @section('main_content')
ক্যাটাগরি
@if($post_cat)
{{ $post_cat->name }}
@endif @foreach(\App\Category::all() as $category)
{{ $category->name }}
@endforeach
দেখুন
সব সংবাদ দেখুন
তারিখ
দেখুন
@if($post_cat)
{{ $post_cat->name }} এর সব সংবাদ
@else
সব সংবাদ
@endif
@foreach($posts as $post)
{{ $post->headline }}
{{ bangla_published_time($post->created_at) }}
{{ str_limit($post->excerpt, 120) }}...
বিস্তারিত
@endforeach
@include('_front.inc.latest_popular')
সব খবর
{!! $posts->appends(\Illuminate\Support\Facades\Input::except('page'))->links() !!}
@endsection