@extends('dashboard.layouts.main') @section('title', getSiteName() . ' - Dashboard - Shop') @section('content')
| {{ __('Thumb') }} | {{ __('Title') }} | {{ __('View on site') }} | {{ __('Created At') }} | {{ __('Sort Order') }} | {{ __('Views') }} | {{ __('Status') }} | @can('delete shop'){{ __('Delete') }} | @endcan
|---|---|---|---|---|---|---|---|
| {{ $product->getInfo()->title }} | {{ __('Open') }} |
@if($product->created_at)
{{ Carbon\Carbon::parse($product->created_at)->format('d.m.Y') }} {{ Carbon\Carbon::parse($product->created_at)->format('H:i') }} @endif |
{{ $product->sort_order }} | {{ $product->views }} | @if($product->status) Active @else Inactive @endif | @can('delete shop')@endcan |
{{ __('Products not found.') }}
@endif