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