@extends('layouts.admin_layout') @section('content')

Manage Chapter

@if(Session::has('success'))

×{{ Session::get('success') }}

@endif @if(Session::has('error'))

{{ Session::get('error') }}

@endif

Chapter Lists

Add
@php $i=1;@endphp @foreach($allNews as $news) @endforeach
# Sorting Order Title Image Publish Date Description Status Action
{{$i++}} {{$news->sorting}} {{$news->title}} {{$news->image}} {{$news->publish_date}} {{$news->description}} @if($news->status == 1) Active @else In-Active@endif
{{ method_field('DELETE') }}{{csrf_field()}}
@endsection