@extends('backend.layouts.app')
@section('content')
ID |
Product Name |
Thumbnail |
Price |
Main Category |
Type |
Sub Type |
Action |
@foreach ($trends as $items)
{{ $items->id }} |
|
{{ $items->name }} |
{{ $items->price, 2 }} |
{{ $items->category }} |
{{ $items->type }} |
{{ $items->sub_type }} |
|
@endforeach
@endsection
@section('js')
@yield('js')
@endsection