@if($extraProductConsent)
Total added products are {{ $productCount }}
Product limit as per your package is {{ $userSubscription->PackageMaximumProducts }}
@else
@if($productCount >= $userSubscription->PackageIncludedProducts)
Total added products are {{ $productCount }}
Product limit as per your package is {{ $userSubscription->PackageIncludedProducts }}
@else
Total added products are {{ $productCount }}
Product limit as per your package is {{ $userSubscription->PackageIncludedProducts }}
@endif
@endif
@if(!$extraProductConsent)
@if($productCount >= $userSubscription->PackageIncludedProducts)
Products in excess of {{$userSubscription->PackageIncludedProducts}} will be charged monthly in arrears, in accordance with our rates available at: https://www.producty.com/pricing/.
Please confirm you wish to increase your product limit including additional charges.
I agree.
@endif
@endif
Product ID |
Product Code |
Operations |
Create Date/Time |
End of Life Date |
Created By |
@foreach($allProducts as $product)
{{ $product->ProductID }} |
{{ $product->ProductCode }} |
Edit Product
|
{{ $product->CreatedAt }} |
{{ $product->EndOfLifeDate }} |
{{ $product->FirstName}} {{$product->LastName }} |
@endforeach
Showing {{($allProducts->currentpage()-1)*$allProducts->perpage()+1}} to {{$allProducts->currentpage()*$allProducts->perpage()}}
of {{$allProducts->total()}} entries
@include('dashboard.paginator', ['paginator' => $allProducts])