HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers60/royalforkliftbenelux.com/app/views/layouts/pages/posts/index.blade.php
@extends('layouts.master')

@section('editable_content')

    <div class="color-wrapper">
        @include('layouts.partials.navigation', ['shadow' => true])

        <h1 hidden>{{$page->translation->name}}</h1>

        @if( $posts->count() != 0)
            <section class="overview grid-row @if(\Input::get('page', null) == null || \Input::get('page', null) == 1) first-page @endif ">

                @foreach($posts as $key => $post)
                    @include('layouts.partials.posts.post')
                @endforeach

            </section>
        @else
            <h2 class="no-news">Geen nieuws beschikbaar</h2>
        @endif


        @if(method_exists($posts, 'links'))
            <div class="pagination">
                {{$posts->links('layouts.partials.posts.pagination')}}
            </div>
        @endif

    </div>

@endsection