@extends('layouts.app')
@auth
@section('content')
Annoucements in the Clinic.
| Text |
Date |
Writer |
@if(!empty($text) && $text->count())
@foreach($text as $key => $value)
| {{ $value->Announce}} |
{{ $value->created_at}} |
Team Leader |
@endforeach
@else
| There is no data. |
@endif
@endauth
@endsection