File "show.blade.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/resources/views/admin/attributeOptions/show.blade.php
File size: 1.77 KB
MIME-type: text/html
Charset: utf-8
@extends('layouts.admin')
@section('content')
<div class="card">
<div class="card-header">
{{ trans('global.show') }} {{ trans('cruds.attributeOption.title') }}
</div>
<div class="card-body">
<div class="form-group">
<div class="form-group">
<a class="btn btn-default" href="{{ route('admin.attribute-options.index') }}">
{{ trans('global.back_to_list') }}
</a>
</div>
<table class="table table-bordered table-striped">
<tbody>
<tr>
<th>
{{ trans('cruds.attributeOption.fields.id') }}
</th>
<td>
{{ $attributeOption->id }}
</td>
</tr>
<tr>
<th>
{{ trans('cruds.attributeOption.fields.attribute') }}
</th>
<td>
{{ $attributeOption->attribute->name ?? '' }}
</td>
</tr>
<tr>
<th>
{{ trans('cruds.attributeOption.fields.name') }}
</th>
<td>
{{ $attributeOption->name }}
</td>
</tr>
</tbody>
</table>
<div class="form-group">
<a class="btn btn-default" href="{{ route('admin.attribute-options.index') }}">
{{ trans('global.back_to_list') }}
</a>
</div>
</div>
</div>
</div>
@endsection