![]() 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/medad.corals.io/Corals/modules/Medad/resources/views/projects/ |
@extends('layouts.crud.show') @section('content_header') @component('components.content_header') @slot('page_title') {{ $title_singular }} @endslot @slot('breadcrumb') {{ Breadcrumbs::render('medad_project_show', $company, $branch,$project) }} @endslot @endcomponent @endsection @section('content') <div class="row"> <div class="col-md-4"> @component('components.box') <table class="table table-striped"> <tr> <th>@lang('Medad::attributes.project.name')</th> <td>{!! $project->present('name')!!}</td> </tr> <tr> <th>@lang('Medad::attributes.manager')</th> <td>{!! $project->present('manager')!!}</td> </tr> <tr> <th>@lang('Medad::attributes.project.description')</th> <td>{!! $project->description !!}</td> </tr> <tr> <th>@lang('Utility::attributes.location.address')</th> <td>{!! $project->present('address')!!}</td> </tr> <tr> <th>@lang('Utility::attributes.location.lat')</th> <td>{!! $project->present('lat')!!}</td> </tr> <tr> <th>@lang('Utility::attributes.location.long')</th> <td>{!! $project->present('long')!!}</td> </tr> </table> <div> <h4>@lang('Medad::attributes.receivers')</h4> @include('Medad::show_users_list',['users'=> $project->receivers ]) </div> <div> <h4>@lang('Medad::attributes.orderIssuers')</h4> @include('Medad::show_users_list',['users'=> $project->orderIssuers ]) </div> @endcomponent </div> <div class="col-md-8 show-dt-tabs"> @component('components.box') <ul class="nav nav-tabs"> <li class="nav-item"> <a href="#quotation_requests" class="nav-link" data-content_url="{{ $project->getShowURL().'/quotation-requests' }}" data-toggle="tab">@lang('Medad::module.quotation_request.title')</a> </li> <li class="nav-item"> <a href="#quotations" class="nav-link" data-content_url="{{ $project->getShowURL().'/quotations' }}" data-toggle="tab">@lang('Medad::module.quotation.title')</a> </li> <li class="nav-item"> <a href="#purchase_orders" class="nav-link" data-content_url="{{ $project->getShowURL().'/purchase-orders' }}" data-toggle="tab">@lang('Medad::module.purchase_order.title')</a> </li> <li class="nav-item"> <a href="#delivery_notes" class="nav-link" data-content_url="{{ $project->getShowURL().'/delivery-notes' }}" data-toggle="tab">@lang('Medad::module.delivery_note.title')</a> </li> <li class="nav-item"> <a href="#invoices" class="nav-link" data-content_url="{{ $project->getShowURL().'/invoices' }}" data-toggle="tab">@lang('Medad::module.invoice.title')</a> </li> <li class="nav-item"> <a href="#transactions" class="nav-link" data-content_url="{{ $project->getShowURL().'/transactions' }}" data-toggle="tab">@lang('Medad::module.transaction.title')</a> </li> </ul> <div class="tab-content"> <div class="tab-pane" id="quotation_requests"> </div> <div class="tab-pane" id="quotations"> </div> <div class="tab-pane" id="purchase_orders"> </div> <div class="tab-pane" id="delivery_notes"> </div> <div class="tab-pane" id="invoices"> </div> <div class="tab-pane" id="transactions"> </div> </div> @endcomponent </div> </div> @endsection @section('js') <script> $(document).ready(function () { if (!window.location.hash) { $('.show-dt-tabs .nav-link').first().click(); } }); </script> @endsection