@extends('layouts.app') @section('header-title', __('Shop Products')) @section('content')

{{ __('Shop Products') }}

@include('admin.shop.header-nav')
@forelse($products as $key => $product)
@hasPermission('shop.product.show') icon @endhasPermission
{{ Str::limit($product->name, 50, '...') }}

{{ $product->short_description }}

{{ showCurrency($product->price) }} @if ($product->discount_price) {{ showCurrency($product->discount_price) }} @endif

({{ number_format($product->reviews->avg('rating'), 1) }})
@empty
{{ __('No Data Found') }}
@endforelse
{{ $products->links() }}
@endsection