@extends('admin.layouts.app') @section('header', 'news') @section('content')

news List

Add New
@include('flash::message') @foreach ($news as $item) @endforeach
Action Title Description Image Status
{{ Form::open([ 'url' => route('admin.news.destroy', $item->id), 'method' => 'Delete', 'class' => 'pull-left' ]) }} {{ Form::close() }} {{ $item->title }} {{ Illuminate\Support\Str::limit($item->description, 100) }} @if($item->status) Active @else Inactive @endif
@endsection @push('scripts') @endpush