@extends('publicprofilelayout') @section('title',trans('core.title_company_profile')) @section('content')
@php $image =$get_company_view->companyLogo ? \HireMeeHelper::getAWSImageUrl($get_company_view-> companyLogo->s3_id,config('filesystems.disks.comp1.bucket'),'comp1') : secure_asset('assets/images/user.png'); @endphp User-Profile-Image
{{ empty($get_company_view->getlist->company_name) ? "" : ucwords($get_company_view->getlist->company_name)}}

Company Type : {{$get_company_view->getlist->companyType ? $get_company_view->getlist->companyType->name : "Not updated"}}

Company Career Page : {{ empty($get_company_view->getlist->career_page) ? "" : ucwords($get_company_view->getlist->career_page) }}

About

{{ empty($get_company_view->getlist->about_summery) ? "" : ucwords($get_company_view->getlist->about_summery) }}

Communication Address

{{ $get_company_view->getlist->spoc_name }}

{{$get_company_view->getlist->commCity ? $get_company_view->getlist->commCity->district : "Not updated" }}, {{$get_company_view->getlist->commState ? $get_company_view->getlist->commState->name : "Not updated"}}

{{ $get_company_view->mobile_number ?? "Not updated"}}

{{$get_company_view->getlist ? $get_company_view->getlist->website_address: "Not updated"}}

Corporate Address

{{$get_company_view->getlist->corpCity ? $get_company_view->getlist->corpCity->district : "Not updated"}}, {{$get_company_view->getlist->corpState ? $get_company_view->getlist->corpState->name : "Not updated"}}

{{ $get_company_view->mobile_number ?? "-"}}

{{$get_company_view->getlist ? $get_company_view->getlist->website_address: "Not updated"}}

No.of Employes

@php if(!empty($get_company_view->getlist->no_of_employees)){ if($get_company_view->getlist->no_of_employees == 1){ $no_of_employee = '0-100'; }elseif($get_company_view->getlist->no_of_employees == 2){ $no_of_employee = '100-500'; }elseif($get_company_view->getlist->no_of_employees == 3){ $no_of_employee = '500-1000'; }elseif($get_company_view->getlist->no_of_employees == 4){ $no_of_employee = '1000-5000'; }else{ $no_of_employee = '>5000'; } }else{ $no_of_employee = '-'; } @endphp {{ $no_of_employee }}

Branch Address

@forelse($branch_details as $branch_detail)

{{ ucwords($branch_detail->address) }}
{{ $branch_detail->cityDetails ? $branch_detail->cityDetails->district : "Not updated" }}, {{ $branch_detail->stateDetails ? $branch_detail->stateDetails->name : "Not updated" }}.

@empty @endforelse
@if(!empty($company_video))

About {{ empty($get_company_view->getlist->company_name) ? '' : ucwords($get_company_view->getlist->company_name) }}

@endif
@endsection @section('footer') @endsection