@extends('admin.main') @section('main')
Reset
@forelse ($products as $product) @empty @endforelse
Product ID Qty Price Status Actions
{{ $product->id }} N/D {{ formatMoney($product->price, true) }} @if(isset($product->is_archived) && $product->is_archived)
Archived
@else
Published
@endif
@if ($products->hasPages())
  • @for ($page = 1; $page <= $products->lastPage(); $page++)
  • {{ $page }}
  • @endfor
@endif
Showing {{ $products->firstItem() }} to {{ $products->lastItem() }} of {{ $products->total() }} results
@endsection @push('js') @endpush @push('css') @endpush