@extends('layouts.app') @section('titlePage', 'Manage Testimonial') @section('content') @push('script') @endpush
Create
@include('common.alert')
@php use Illuminate\Support\Str; @endphp @foreach ($data as $value) @endforeach
Title Author Description Action
{{ $value->title }} {{ $value->author }} {{ Str::limit(strip_tags($value->description), 200) }}
@csrf @method('DELETE')
{{-- Pagination --}}
Showing {{ $data->firstItem() }} to {{ $data->lastItem() }} of {{ $data->total() }} Entries
    {{-- Previous Page Link --}} @if ($data->onFirstPage())
  • <<
  • @else
  • <<
  • @endif {{-- Current Page --}}
  • {{ $data->currentPage() }}
  • {{-- Next Page Link --}} @if ($data->hasMorePages())
  • >>
  • @else
  • >>
  • @endif
@endsection @section('script') @endsection