@extends('layouts.app')
@section('title', 'Section List')
@section('content')
Suggested Products Solution
{{-- Alert Messages --}}
@include('common.alert')
ID |
Title |
Category |
Description |
Actions |
@if(count($spss)>0)
@foreach ($spss as $sps)
{{ $sps->id }} |
{{ $sps->title }} |
{{ $sps->spsCategory->sps_category_name }} |
{!! Str::words(strip_tags($sps->description), 10, ' ...') !!} |
|
@endforeach
@else
There are no data. |
@endif
{{-- $spss->links() --}}
{{ $spss->appends(request()->query())->links() }}
@include('sps.delete-modal')
@endsection
@push('script')
@endpush