@extends('layouts.admin') @section('title', 'Products — '.config('app.name')) @section('page_title', 'Products') @section('breadcrumbs') @endsection @section('content')
Catalog products
@forelse ($products as $product) @empty @endforelse
ID Code Name Pack type Active
{{ $product->id }} {{ $product->code }} {{ $product->name }} {{ $product->pack_type?->label() }} {{ $product->is_active ? 'Yes' : 'No' }}
No products found.
{{ $products->links() }}
@endsection