Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
peripherad
/
resources
/
views
/
admin
/
attributeOptions
:
show.blade.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
@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