@extends('layouts.app') @section('content')
@include('layouts.leftside-menubar')
@include('components.pages-bar',['pageTitle' =>''. trans('Website Settings').' / '.trans('Notice').'']) @include('components.sectionbar.frontmanagement-bar',['notices'=>$notices])
@if (count($notices) > 0)
@foreach ($notices as $key => $notice) @endforeach
# @lang('Notice Title') @lang('Edit') @lang('Status')
{{$key+1}} {{$notice->title}} @lang('Edit') @lang($notice->active == 1 ? 'Published' : 'Unpublished')
@push('styles') @endpush @push('script') @endpush @else
@lang('No Related Data Found.')
@endif
@endsection