@extends('layouts.app') @section('content')

Medical News

Latest news in healthcare jobs from across Europe

{{-- left side --}}
@foreach($posts as $post)

{{ $post->name }}

{{ date('F d, Y',strtotime($post->created_at)) }}

{!! Str::words(strip_tags($post->content), 14, ' [...]') !!}

Read more
@endforeach
@if ($posts->hasPages())
{{ $posts->links() }}
@else

There are no posts yet. Please, be patient :)

@endif
{{-- right side --}}
@include('blocks.banner_job_count') @endsection