@extends('backend.layouts.master') @section('content')
NoticesList of Notices Add
@foreach($data as $k=>$v) @endforeach
# Image Title First Description Second Description Published date Sort Order Active Action
{{++$k}} {{$v->title}} {!!Str::words(strip_tags($v->first_description),20,'...')!!} {!!Str::words(strip_tags($v->second_description),20,'...')!!} {{$v->published_date}} {{$v->sort_order}} @if(@$v->active) Yes @else No @endif
@csrf @method('DELETE')
@endsection @section('scripts') @endsection