@extends($layout) @section('content')

@if($id==1) Teacher Article @elseif($id==2) Student Article @endif

@if(!empty($articles[0])) @foreach ($articles as $notice)

Posted on : {{ date('d-M-Y', strtotime($notice->date)) }}

Posted By : {{ $notice->name }}

{!! nl2br($notice->short_description) !!}

@endforeach @else

No Record Found!!!

@endif
@stop