@extends('layouts.organization') @section('breadcrumb')

{{__('Notice Board')}}

@endsection @section('content')
{{__('Notice Board')}}
@if(count($courses) > 0)
@foreach($courses as $course) @endforeach
{{__('Course Name')}} {{__('Total Notice')}} {{__('Action')}}
img
{{ Str::limit($course->title, 50) }}
{{ @$course->notices->count() }}
@if(@$courses->hasPages()) {{ @$courses->links('frontend.paginate.paginate') }} @endif @else
img
{{__('Empty Course Notice')}}
@endif
@endsection