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