@extends('layout') @section('page-title', 'Blog') @section('content')
Blog
Discover latest technologies and development.
@if(count($posts)) @foreach($posts as $post)
{{ $post->title }}
@foreach($post->categories as $category)
{{ $category->name }}
@endforeach
{{ $post->title }}
{{ $post->excerpt }}
{{ date_format($post->updated_at, 'F d, Y') }}
@endforeach @else
No posts available
@endif
{{ $posts->onEachSide(3)->links() }}
@endsection