@extends('layouts.admin_layout') @section('title', 'Manage Products') @section('content')

Manage Products

@if(!empty($auth_write_status)) Add Product @endif
@foreach($products as $product_row) @endforeach
Name Category Action
{{$product_row->product_name}} {{$product_row->category_name}} @if(!empty($auth_write_status)) Edit @endif Variants @if(!empty($auth_write_status)) @if($product_row->product_category_id == 1) Monthly Newsletter @endif @endif
@endsection