@extends('admin.layout.master') @section('content')

{{__('obs.circular')}}
@php($i = 1) @foreach ($notices as $notice) @endforeach
# {{__('obs.head')}} {{__('obs.visibility')}} {{__('obs.department')}} {{__('obs.details')}} {{__('obs.link')}} {{__('obs.file')}} {{__('obs.status')}} {{__('obs.action')}}
{{ $i++ }} {{ $notice->head }} @if ($notice->visibility == 1)

{{__('obs.all')}}

@elseif($notice->visibility ==2)

{{__('obs.custom')}}

@endif

{{__('obs.not_found')}}

{!! Str::limit($notice->details, 200) !!} @if (!empty($notice->link)) {{__('obs.click')}} @else

{{__('obs.not_found')}}

@endif
@if($notice->attachment) @else

{{__('obs.not_found')}}

@endif
@if ($notice->status == 1)

{{__('obs.active')}}

@elseif($notice->status ==2)

{{__('obs.pending')}}

@endif
@if($notice->attachment) {{__('obs.download')}} @endif
{{ $notices->links() }}
{{-- --}} @include('payroll.notice_circular.circular.store') @endsection