@extends('admin.layout.default') @section('content') @include('admin.shop.products.pages.header')
{{ trans('admin.PRODUCTS') }}
    {!! csrf_field() !!}
@foreach($table as $row) @endforeach
{{ trans('admin.OPTIONS') }} {{ trans('admin.TITLE') }} {{ trans('admin.CATEGORY') }} {{ trans('admin.CREATED') }} {{ trans('admin.UPDATED') }} {{ trans('admin.ACTIVE') }} {{ trans('admin.LANGUAGE') }} {{ trans('admin.SORT') }}
Edit {{ $row->title }} {{ $row->category_name or null }} @if ($row->created_at <> '0000-00-00 00:00:00') {{ date("d.m.Y", strtotime($row->created_at)) }} @endif @if ($row->created_at <> '0000-00-00 00:00:00') {{ date("H:i", strtotime($row->created_at)) }} @endif @if ($row->updated_at <> '0000-00-00 00:00:00') {{ date("d.m.Y", strtotime($row->updated_at)) }} @endif @if ($row->updated_at <> '0000-00-00 00:00:00') {{ date("H:i", strtotime($row->updated_at)) }} @endif @if ($row->active == 1) @else @endif {{ $row->num_gallery or 0}} {{ $row->num_attachemnts or 0}}
@endsection