@extends('layouts.master') @section('content') <h1>Product</h1> <div class="table-responsive"> <table class="table table-bordered table-striped table-hover"> <thead> <tr> <th>ID.</th> <th>ProductName</th> </tr> </thead> <tbody> <tr> <td>{{ $product->id }}</td> <td> {{ $product->productName }} </td> </tr> </tbody> </table> </div> @endsection