@extends('inc.layout')
@section('content')
@if(Route::is('pages.edit'))
@else
| # |
Title |
Slug |
Meta title |
Meta Keywords |
Meta Description |
Action |
@if(!$pages_info->isEmpty())
{{--@dd($pages_info) --}}
@foreach ($pages_info as $key => $pages)
| {{ $loop->iteration }} |
{{ $pages->title }} |
{{ $pages->slug }} |
{{ $pages->meta_title }} |
{{ $pages->meta_keywords }} |
{{ $pages->meta_description }} |
|
@endforeach
@else
| No Any Records Available. |
@endif
@endif
@endsection