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

{{__('Notice List')}}

@endsection @section('content')
{{ __(@$course->title) }}
@if(count($notices) > 0)
@foreach($notices as $notice) @endforeach
{{__('Notice_date')}} {{__('Notice_topic')}} {{__('Action')}}
{{ $notice->created_at->format('d/m/Y') }} {{ Str::limit($notice->topic, 45) }}
@if(@$notices->hasPages()) {{ @$notices->links('frontend.paginate.paginate') }} @endif @else
img
{{__('Empty Notice')}}
@endif {{__('Back')}} {{__('Add Notice')}}
@endsection