@extends('layouts.app')
@section('title', trans('announcements.title'))
@section('content')
@php $user = auth()->user(); @endphp
@can('create announcements')
{{trans('forms.lbl_add_new')}}
@endcan
@if($user->hasAnyPermission(['delete announcements']))
0 {{ trans('forms.lbl_items_selected') }}
@endcan
@endsection
@section('footer-script')
@stop