File: /home/posscale/www/printmanager/resources/views/tenant/printer_type/show.blade.php
<x-app-layout>
<x-slot name="header">
<h1 class="mb-0">
{{ __('Printer Type Details') }}
</h1>
</x-slot>
<div class="py-12">
<div class="grid grid-cols-1">
<div class="card">
<div class="card-header flex justify-between">
<h3 class="card-title">
{{ __('Printer Type Details') }}
</h3>
<a href="{{route('printer-type.index')}}" class="btn btn-primary w-max">Back</a>
</div>
<div class="card-body">
<table class="table">
<thead>
<tr>
<th width="250">Data</th>
<td><b>Value</b></td>
</tr>
</thead>
<tbody>
<tr>
<th>Printer Type</th>
<td class="border-b p-4 text-left">{{$printer_type->type_title}}</td>
</tr>
<tr>
<th>Toner type</th>
<td class="border-b p-4 text-left">{{$printer_type->toner_type}}</td>
</tr>
<tr>
<th>Drum unit</th>
<td class="border-b p-4 text-left">{{$printer_type->drum_unit}}</td>
</tr>
<tr>
<th>Fuser unit</th>
<td class="border-b p-4 text-left">{{$printer_type->fuser_unit}}</td>
</tr>
<tr>
<th>Paper tray</th>
<td class="border-b p-4 text-left">{{$printer_type->paper_tray}}</td>
</tr>
<tr>
<th>Paper feed rollers</th>
<td class="border-b p-4 text-left">{{$printer_type->paper_feed_rollers}}</td>
</tr>
<tr>
<th>Duplex unit</th>
<td class="border-b p-4 text-left">{{$printer_type->duplex_unit}}</td>
</tr>
<tr>
<th>Transfer belt</th>
<td class="border-b p-4 text-left">{{$printer_type->transfer_belt}}</td>
</tr>
<tr>
<th>Toner discreptions</th>
<td class="border-b p-4 text-left">{{$printer_type->toner_discreptions}}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</x-app-layout>