@foreach($products as $key=> $row)
|
|
{{ $row->id }} |
{{ $row->title }} |
{{ $row->cost }} |
{{ $row->category->currentDescription->title }} |
{{-- {{ __('products.statuses.'.$row->status_most_sold) }} | --}}
{{ \Carbon\Carbon::parse($row->created_at)->format('Y/m/d') }} |
|
@endforeach
@if( count( $products ) && $products->hasPages() )
| {{ $products->links() }} |
@endif