@extends('admin/layout') @section('page_title','View Products') @section('product_select','active') @section('all_product_select','active') @section('content')

{{$product_info->name}} Product View

Master Info:

@if($product_info->company_name) @endif
Brand Name : {{$product_info->brand_name}}
Origin : {{$product_info->origin}}
Company Name : {{$product_info->company_name}}

Product Info:

Category Name : {{$product_info->cat_name}}
Product Name : {{$product_info->name ?? ''}}
Unit : {{$product_info->unit ?? '' }}
Price : {{$product_info->price ?? 0 }}
Specification : {{$product_info->specification ?? '' }}
Description : {!! $product_info->desc ?? '' !!}
@endsection @section('scripts') @endsection