@extends('layouts.admin') @section('title', 'Recycle Products') @section('content') @component('admin.dashboard.breadcumb') @endcomponent
@forelse($products as $product)
user

{{str_limit($product->name, 12)}}

Tk {{$product->price}}
@empty @component('admin.dashboard.error') Back to Product @endcomponent @endforelse
{{$products->links()}}
@endsection