@extends('layouts.admin') @section('content')

Add Product

@include('errors._error-bag')
{{csrf_field()}}

Available Products

@forelse($products as $product) @empty

There is no product in the show case

@endforelse
Code Category Tree Title Images Added At Is On Home
{{$product->code}} {{config("coco.main.{$product->category->main}")}} >> {{$product->category->name}} {{$product->title}} {{($product->images->count()?:"none")}} {{$product->created_at->toFormattedDateString()}} {!! ($product->is_on_home ? "Yes":"") !!}
{{ $products->links() }}
@endsection @section('js') @endsection