![]() 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/job-board.corals.io/Corals/modules/Reservation/resources/views/services/ |
@extends('layouts.crud.show') @section('content_header') @component('components.content_header') @slot('page_title') {{ $title_singular }} @endslot @slot('breadcrumb') {{ Breadcrumbs::render('reservation_service_show') }} @endslot @endcomponent @endsection @section('content') <div class="row"> <div class="col-md-4"> @component('components.box') <table class="table table-striped"> <tbody> <tr> <td>@lang('Reservation::attributes.service.code')</td> <td>{!! $service->presentStripTags('code') !!}</td> </tr> <tr> <td>@lang('Reservation::attributes.service.name')</td> <td>{!! $service->presentStripTags('name') !!}</td> </tr> <tr> <td>@lang('Reservation::attributes.owner_type')</td> <td>{!! $service->present('owner_type') !!}</td> </tr> <tr> <td>@lang('Reservation::attributes.owner')</td> <td>{!! $service->present('owner') !!}</td> </tr> <tr> <td>@lang('Reservation::attributes.service.object_type')</td> <td>{!! $service->present('object_type') !!}</td> </tr> <tr> <td>@lang('Reservation::attributes.service.slot_in_minutes')</td> <td>{!! $service->present('slot_in_minutes') !!}</td> </tr> <tr> <td>@lang('Reservation::attributes.service.can_be_cancelled_before')</td> <td>{!! $service->present('can_be_cancelled_before') !!}</td> </tr> <tr> <td>@lang('Reservation::attributes.service.description')</td> <td>{!! $service->present('description') !!}</td> </tr> <tr> <td>@lang('Corals::attributes.status')</td> <td>{!! $service->present('status') !!}</td> </tr> </tbody> </table> @endcomponent </div> @if($service->slot_in_minutes) <div class="col-md-8"> @component('components.box') <h4>@lang('Reservation::attributes.service.schedule')</h4> @include('Reservation::services.partials.schedule',['editable'=>false]) @endcomponent </div> @endif </div> @include('Reservation::services.partials.service_events',['column'=>12]) @endsection