@extends('backend.layouts.app')
@section('content')
ID |
Image |
Title |
Category |
Description |
Action |
@foreach ($products as $items)
{{ $items->id }} |
|
{{ $items->title }} |
{{ $items->category }} |
{!! Str::limit(strip_tags($items->description), 80, '...') !!} |
|
@endforeach
@endsection
@section('js')
@yield('js')
@endsection