@extends('layouts.admin') @section('title', __('Products & Services Dashboard')) @section('content')
{{ __('Manage your software products and services') }}
| {{ __('Name') }} | {{ __('Category') }} | {{ __('Version') }} | {{ __('Status') }} | {{ __('Featured') }} | {{ __('Actions') }} |
|---|---|---|---|---|---|
| {{ $product->name }} @if($product->is_featured) ⭐ @endif | {{ $product->category->name ?? 'Uncategorized' }} | {{ $product->version ?: 'N/A' }} | {{ $product->is_active ? __('Active') : __('Inactive') }} | {{ $product->is_featured ? __('Featured') : __('Not Featured') }} |
{{ __('No products found. Create your first product!') }}
{{ __('Create New Product') }}{{ __('No product categories') }}
@endif{{ __('No service categories') }}
@endif