@extends('layouts.dashboard') @section('title', t('المنتجات','Products')) @section('page-title','📦 '.t('إدارة المنتجات','Manage Products')) @section('content')
{{ $products->count() }} {{ t('منتج','products') }} ➕ {{ t('إضافة منتج','Add Product') }}
@forelse($products as $p) @empty @endforelse
#{{ t('المنتج','Product') }}{{ t('الإصدار','Version') }}{{ t('السعر','Price') }}{{ t('الخطة','Min Plan') }}{{ t('الحالة','Status') }}{{ t('إجراءات','Actions') }}
{{ $p->sort_order }}
{{ $p->icon }}
{{ $p->name }}
/products/{{ $p->slug }}
v{{ $p->version }} @if($p->is_free){{ t('مجاني','Free') }}@if($p->starting_price>0)+${{ number_format($p->starting_price,0) }}@endif @else${{ number_format($p->starting_price,0) }}@endif {{ $p->min_plan }}
@csrf
👁️ ✏️ 💰
@csrf @method('DELETE')
{{ t('لا يوجد منتجات','No products') }}
@endsection