@extends('layout') @section('h4-page', __('Announcement')) @section('contents')
@if (session('success')) @endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
  • {{-- --}}
{{ __('create') }} +
@if (isset($main)) @forelse ($main as $key => $item) @empty @endforelse @else @endif
# {{ __('Title') }} {{ __('Details') }} {{ __('Setting') }} {{ __('Action') }}
{{ $key + 1 }} {{ $item->title }} {{ $item->content }} {{ $item->type == 'all' ? __('All') : __('Someone') }}
{{ __('NoDataFound') }}
{{ __('NoDataFound') }}
{{ @$main->appends(request()->except('page'))->links('pagination::bootstrap-5') }}
@endsection @section('scripts') @endsection