{{-- admin/pages/products/index.blade.php --}} @extends('admin.layouts.app') @section('title','Products') @section('page-title','Products') @section('content')
{{ $products->count() }} products
Add Product
@forelse($products as $product) @empty @endforelse
# Name Standard Badge Status Order Actions
{{ $product->id }}
{{ $product->name }}
{{ Str::limit($product->short_description, 60) }}
@if($product->standard_badge) {{ $product->standard_badge }} @else @endif @if($product->is_active) Active @else Inactive @endif {{ $product->sort_order }}
@csrf @method('DELETE')
No products yet. Add one.
@endsection