@extends('admin/theme') @section('content')
Add New Product
@if(count($products) > 0) @foreach($products as $product) @endforeach
Name Category Image Actions
{{ $product->name }} {{ $product->category->name }} {{ $product->name }}
@else

No products available.

@endif
@endsection