@extends('layouts.master') @php use Illuminate\Support\Str; $is_ginosan = false; $is_kyujinsan = false; if (config('app.env') != 'live') { $is_ginosan = true; $is_kyujinsan = true; } else { $host = request()->getHost(); if (Str::contains($host, 'ginosan.com') !== false) { $is_ginosan = true; } if (Str::contains($host, 'kyujinsan.com') !== false) { $is_kyujinsan = true; } } @endphp @section('title', 'customer') @section('content')

{{ trans('label.customer') }}

@include('pages.customer.detail.card.card_detail') {{-- @include('pages.customer.detail.card.card_summary') --}} {{-- @include('pages.customer.detail.card.card_nationality') --}} {{-- @include('pages.customer.detail.card.card_trainee_count') --}} {{-- @include('pages.customer.detail.card.card_missing_person') --}} {{-- @include('pages.customer.detail.card.card_system_properites') --}}
{{--
(( item.name ))
--}}
@include('pages.activity.detail.list.list_activity')
{{-- --}} {{-- @include('pages.customer.detail.card.card_trainee_list_note') --}}
{{-- --}} @if ($is_ginosan) @endif @if ($is_kyujinsan) @endif
Loading...
@include('pages.customer.detail.modal.update_modal') @include('pages.customer.components.add_modal') @include('pages.activity.detail.modal.add_activity')
@endsection @section('script-footer') {{-- --}} {{-- --}} @include('components.filter.filter_status_vue') @include('components.common.sort_order_manager') @include('components.card.note_important') @include('components.list.list_file_by_model') @include('components.card.card_system_properties', [ 'prop_model' => $model, 'sys_edit' => trans('customer.customer_sys_properties'), 'project_type' => $project_type, 'id' => $id ]) @include('pages.activity.detail.list.list_chat') @include('pages.activity.detail.list.list_chat_aside') @include('pages.customer.detail.list.list_document_ace') @include('pages.customer.detail.list.list_regular_interview_report_for_supervisor') @include('pages.customer.detail.list.list_consultation_record') {{-- xu ly collapse_all --}} @if ($model->init_password === 0) @endif @if ($errors->any()) @endif @if (session('error')) @endif @if (session('success')) @endif @endsection