@extends('layouts.stores_dashboard_layout') @section('title') {{trans('stores_dashboard.products')}} @endsection @section('content')
{{trans('stores_dashboard.products')}}

{{trans('stores_dashboard.products_desc')}}

@foreach($products as $product) @foreach(config('app.languages') as $key => $lang) @endforeach @endforeach
# {{trans('stores_dashboard.number')}} {{trans('stores_dashboard.product_image')}} {{trans('stores_dashboard.name_in_ar')}} {{trans('stores_dashboard.name_in_en')}} {{trans('stores_dashboard.price')}} {{trans('stores_dashboard.quantity')}} {{trans('stores_dashboard.created')}}
{{$index}} {{$product->id}} {{ $product->getTranslation('name', $key) }}{!! $product->display_price() !!}
@csrf
{{$product->groups()?->first()?->in_stock_qty}} {{$product->created_at}}
@endsection @section('scripts') @endsection