@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.name_in_ar')}} {{trans('stores_dashboard.name_in_en')}} {{trans('stores_dashboard.price')}} {{trans('stores_dashboard.created_at')}}
{{$index}} {{$product->id}}{{ $product->getTranslation('name', $key) }}{{$product->price()}}
@csrf
{{$product->created_at}}
@endsection @section('scripts') @endsection