@extends('backend.dashboard.layout.master') @section('content')
| # | {{ translate('Product name') }} | {{ translate('Created By') }} | {{ translate('Category') }} | {{ translate('Price') }} | {{ translate('Annual') }} | {{ translate('slug') }} | {{ translate('Created At') }} | {{ translate('Actions') }} | |
|---|---|---|---|---|---|---|---|---|---|
|
|
@foreach ($item->product_translates as $item2 ) @if($item2->lang == app()->getLocale()) {{ $item2->name }} @endif @endforeach | {{ $item->user_creator->name }} | @foreach ($item->product_category->category_translates as $item2 ) @if ( $item2->lang == app()->getLocale()) {{ $item2->name }} @endif @endforeach | {{ $item->price }} | {{ \Illuminate\Support\Str::limit(implode(', ', (array)json_decode($item->annual, true)), 30) }} | @foreach ($item->product_translates as $item2 ) @if($item2->lang == app()->getLocale()) {{ $item2->slug }} @endif @endforeach | {{ $item->created_at->diffForHumans() }} | {{ translate('Actions') }} |