@extends('admin.layouts.layout') @section('content')
@if ($pages) @foreach ($pages as $key => $page) @endforeach @endif
{{ __('Sr.No') }} {{ __('Title') }} {{ __('Description') }} {{ __('Action') }}
{{ $key + 1 }} {{ $page->title }} {!! Str::limit($page->description, 100, '.........') !!}
@endsection