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