![]() 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/ledger.corals.io/Corals/modules/TroubleTicket/resources/views/teams/ |
@extends('layouts.crud.show') @section('content_header') @component('components.content_header') @slot('page_title') {{ $title_singular }} @endslot @slot('breadcrumb') {{ Breadcrumbs::render('tt_team_show') }} @endslot @endcomponent @endsection @section('content') <div class="row"> <div class="col-md-8"> @component('components.box',['box_class'=>'box-success']) <div class="row"> <div class="col-md-4"> <label>@lang('TroubleTicket::attributes.team.name')</label> <p>{!! $team->present('name') !!} </p> <label>@lang('TroubleTicket::attributes.team.email')</label> <p>{!! $team->present('email') !!}</p> <label>@lang('TroubleTicket::attributes.team.slack')</label> <p style="word-wrap: break-word">{!! $team->present('slack') !!} </p> </div> <div class="col-md-8"> <label>@lang('TroubleTicket::attributes.team.users')</label> <div class="table-responsive"> <table class="table table-striped"> <thead> <tr> <th>@lang('User::attributes.user.full_name')</th> <th>@lang('User::attributes.user.email')</th> <th>@lang('User::attributes.user.roles')</th> </tr> </thead> <tbody> @foreach($team->users as $assignment) <tr> <td>{!! $assignment->assignee->present('full_name') !!}</td> <td>{!! $assignment->assignee->present('email') !!}</td> <td>{!! $assignment->assignee->present('roles') !!}</td> </tr> @endforeach </tbody> </table> </div> </div> </div> @endcomponent </div> </div> @endsection