@extends('Admin.layout.app') @section('title','Product List') @section('page-title','Product List') @section('content')
| Name | Urdu Name | Price | Category | Status | Action | |
|---|---|---|---|---|---|---|
|
{{ $product->name }} |
{{ $product->name_urdu ?? ''}} | Rs {{ number_format($product->price, 2) }} | @if($product->category == '1') Food @else($product->category == '2') Cattring @endif | @if($product->status == '1') Active @else($product->status == '2') Un-Active @endif | @if(($product->status == '1')) @else @endif Update |