![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/inventory.corals.io/Corals/modules/Inventory/resources/views/items/ |
@extends('layouts.crud.show') @section('content_header') @component('components.content_header') @slot('page_title') {{ $title_singular }} @endslot @slot('breadcrumb') {{ Breadcrumbs::render('inventory-item-show') }} @endslot @endcomponent @endsection @section('content') <div class="row"> <div class="col-md-8"> @component('components.box') @slot('box_title') @lang('Inventory::labels.item.item_details') @endslot <div class="table-responsive"> <table class="table color-table info-table table table-hover table-striped table-condensed"> <thead> <tr> <th>@lang(trans('Inventory::attributes.item.name'))</th> <th>@lang(trans('Inventory::attributes.item.code'))</th> <th>@lang(trans('Inventory::attributes.item.price'))</th> <th>@lang(trans('Inventory::attributes.item.status'))</th> <th>@lang(trans('Inventory::attributes.item.wholesale_price'))</th> <th>@lang(trans('Inventory::attributes.item.description'))</th> <th>@lang(trans('Corals::attributes.created_at'))</th> </tr> </thead> <tbody> <tr> <td>{{$item->presentStripTags('name')}}</td> <td>{{$item->present('code')}}</td> <td>{{$item->present('price')}}</td> <td>{!!$item->present('status')!!}</td> <td>{{$item->present('wholesale_price')}}</td> <td>{{$item->present('description') }}</td> <td>{{$item->present('created_at')}}</td> </tr> </tbody> </table> </div> @endcomponent </div> </div> <div class="row"> <div class="col-md-12"> @component('components.box') @include('Utility::gallery.gallery',['galleryModel'=> $item, 'editable'=>false]) @endcomponent </div> </div> @endsection