@extends('admin.layouts.app') @section('content')

{{$service_name}} Sections Table

@include('success.success') @include('errors.error') @foreach($service_sections as $section) @endforeach
S.N. Service Name Section Title Image Description Order By Status Action
{{$loop->iteration}} {{$section->service->name}} {{$section->title}} @if($section->image != null) Failed to display image @else Image not available @endif {!!$section->description!!} {{$section->order_by}} {{config('custom.status')[$section->status]}} View Edit
{!! $service_sections->links() !!}
@endsection