@extends('admin.layouts.app')
@section('header', 'news')
@section('content')
@include('flash::message')
| Action |
Title |
Description |
Image |
Status |
@foreach ($news as $item)
|
{{
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) }} |
 . $item->image) }}) |
@if($item->status)
Active
@else
Inactive
@endif
|
@endforeach
@endsection
@push('scripts')
@endpush