@extends('layouts.layout') @section('title') {{ __('Blog') }} @stop @section('content')

Blog

@if (in_array(1, Request::get('category_ids', []))) @else @endif @if (in_array(2, Request::get('category_ids', []))) @else @endif @if (in_array(3, Request::get('category_ids', []))) @else @endif @if (in_array(4, Request::get('category_ids', []))) @else @endif @if (in_array(5, Request::get('category_ids', []))) @else @endif @if (in_array(0, Request::get('category_ids', []))) @else @endif

@if (Auth::check())

Dodaj

@csrf
@endif
@foreach($posts as $post)
@if (Auth::check())
@csrf
Edytuj
@endif
@endforeach
{{ $posts->links() }}
@stop