@extends('admin.layout.admin') @section("title"," Dashboard | Wishours") @section("content")

Products Manage Products


Products List

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session()->has('message'))
{{ session('message') }}
@endif
@if($products) @foreach($products as $product) @endforeach @else @endif
# Product Code Title Categories Price Thumbnail Date Created Actions Trash Delete View
1 {{ $product->product_code }} {{ $product->title }} @if($product->categories()->count() > 0) @foreach($product->categories as $children) {{$children->title}}, @endforeach @else {{"product"}} @endif {{ $product->price }} {{ $product->created_at }} @if($product->addonproduct == 1)
Addon Product
@elseif($product->another_product == 1) @else @endif
View
No products Found.
@endsection