@extends('layouts.app')
@section('header-title', __('Shop Products'))
@section('content')
@include('admin.shop.header-nav')
{{ __('SL') }} |
{{ __('Thumbnail') }} |
{{ __('Product Name') }} |
{{ __('Price') }} |
{{ __('Discount Price') }} |
{{ __('Verify Status') }} |
@hasPermission('admin.product.show')
{{ __('Action') }} |
@endhasPermission
@forelse ($products as $key => $product)
{{ ++$key }} |
|
{{ $product->name }} |
{{ showCurrency($product->price) }}
|
{{ showCurrency($product->discount_price) }}
|
@if ($product->is_approve)
{{ __('Approved') }}
@else
{{ __('Pending') }}
@endif
|
@hasPermission('admin.product.show')
|
@endhasPermission
@empty
{{ __('No Data Found') }} |
@endforelse
{{ $products->links() }}
@endsection