@extends('adminlte::page') @section('title', __("clinic-news.index.title")) @section('content_header')
@stop @section('content')
@if ($news->count() > 0) @foreach ($news as $newsItem) @endforeach @else @endif
{{ __("clinic-news.index.target") }} {{ __("common.news.post_at") }} {{ __("common.news.category") }} {{ __("common.news.title") }}
@if (strcmp($newsItem->is_designated_clinic, '1') == 0)
{{ __("clinic-news.index.target_for_me") }} @else
{{ __("clinic-news.index.target_for_all") }} @endif
{{$newsItem->post_at->format('Y/m/d')}}

{{ $newsItem->newsCategory['name_' . $locale] }}

@if (strcmp($newsItem->is_important, '1') == 0) @endif {{$newsItem->title}} @if (strcmp($newsItem->is_attached_file, '1') == 0) @endif
{{ __("common.news.no_news") }}

{{ $news->links() }}
@stop @section('css') @stop