@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($chapters as $chapter) @endforeach
# Sorting Order Title Image Description Status Action
{{$i++}} {{$chapter->sorting}} {{$chapter->title}} {{$chapter->image}} {{$chapter->description}} @if($chapter->status == 1) Active @else In-Active@endif
{{ method_field('DELETE') }}{{csrf_field()}}
@endsection