@extends('home') @section('title') @lang('site.site_name') @endsection @section('styles') {!! Html::style(Theme::current()->assetPath.'/global/plugins/bootstrap-markdown/css/bootstrap-markdown.min.css') !!} {!! Html::style(Theme::current()->assetPath.'/global/plugins/bootstrap-fileinput/bootstrap-fileinput.css') !!} {!! Html::style(Theme::current()->assetPath.'/global/plugins/bootstrap-switch/css/bootstrap-switch.min.css') !!} @endsection @section('content')
{{__('Item')}} | {{__('Category')}} | {{__('Selling price')}} | {{__('Quantity')}} | {{__('Status')}} | {{__('Action')}} | |||
---|---|---|---|---|---|---|---|---|
{{ $loop->index + $products->firstItem() }} | @if ($item->photo) @else @endif | @if ($item->depth > 1) {!! str_repeat('-',$item->depth) !!}◄ @endif {{ $item->title }} | {{ @$item->Category->title }} | {{ $item->price }} | {{ $item->stock }} | {{ Form::open(['method' => 'Put', 'route' => ['product.publish', $item->id]]) }} @if ($item->publish == 1) @elseif ($item->publish == -1) @else @endif {{ Form::close() }} | {{ Form::open(['method' => 'DELETE', 'route' => ['admin.product.destroy', $item->id]]) }} {{ Form::close() }} |