@extends('admin.layouts.master') @section('content')
Product {{ $product->id }}
{{ method_field('DELETE') }} {{ csrf_field() }}


ID {{ $product->id }}
Item Id {{ $product->item_id }}
Name {{ $product->name }}
Sub Text {{ $product->sub_text }}
Image
Price {{ $product->price }}
Description {{ $product->description }}
Status {{ $product->is_active==1?'Active':'Disabled' }}
@endsection