@extends('layouts.app') @section('content')
Posts @can('create-post') Create New Post @endcan
@if($posts->count() > 0)
@foreach($posts as $post) @endforeach
{{ $posts->links() }}
@else @endif
@endsection