@extends('layouts.admin')
@section('content')
| No. |
Page Name |
Action |
@if(count($contents) > 0)
@foreach($contents as $index => $content)
| {{$index + 1}} |
{{$content->title}} |
|
@endforeach
@endif
@if(count($data) > 0)
@foreach($data as $index => $val)
| {{count($contents) + $index + 1}} |
{{$val->name}} |
|
@endforeach
@endif
{{ count($data) + count($contents) + 1 }} |
Testimonial Section |
|
@endsection