@extends('admin.template') @section('title') News List @endsection @section('active-link') News List @endsection @section('css') @endsection @section('content') @section('content')
@if(Session::has('message'))
× {{ Session::get('message') }}
@endif

News

 / Dashboard 

News

News List

Add News
@foreach($newsList as $news) @endforeach
# Image Title Writer Details Status Action
{{$loop->iteration}} {{$news->title}} {{$news->writer}} {!! Illuminate\Support\Str::limit($news->descriptions, 50) !!} @if($news->status == 0)

Inactive

@else

Active

@endif
{{ csrf_field() }} @method('DELETE')
{{----}}
@endsection('content') @section('js') {{----}} @endsection('js')