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

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

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