@extends('admin.layouts.app') @section('title') {{ __($company->user->name) }} @endsection @section('content')

{{ $company->user->name }}'s {{ __('details') }}

@method('DELETE') @csrf

{{ __('establishment_date') }}

{{ $company->establishment_date ? date('j F, Y', strtotime($company->establishment_date)) : '' }}

{{ __('team_size') }}

{{ $company->team_size ? $company->team_size->name : '' }}

{{ __('industry_type') }}

{{ $company->industry ? $company->industry->name : '' }}

{{ __('country') }}

{{ $company->country ? $company->country : '' }}

@if ($company->website) @endif @if ($company->user->contactInfo->phone) @endif @if ($company->user->contactInfo->email )

{{ __('contact_email') }}

{{ $company->user->contactInfo->email }}
@endif
{{ __('description') }}

{!! nl2br($company->bio) !!}

{{ __('vision') }}

{!! nl2br($company->vision) !!}

{{ __('location') }}

@php $map = setting('default_map'); @endphp @if ($map == 'map-box')
@elseif ($map == 'google-map')
@else
@endif
@if ($company->jobs->count() > 0)

{{ __('company_joblist') }}

@if (userCan('job.update') || userCan('job.delete')) @endif @foreach ($company->jobs as $job) @if (userCan('job.update')) @endif @endforeach
{{ __('job') }} {{ __('category') }}/{{ __('role') }} {{ __('salary') }} {{ __('deadline') }} {{ __('status') }}{{ __('action') }}
image

{{ $job->title }}

{{ $job->title }} @if ($job->is_remote) ยท {{ __('remote') }} @endif

{{ $job->category->name }}

{{ $job->role->name }}

@if ($job->salary_mode == 'range')

{{ getFormattedNumber($job->min_salary) }} - {{ getFormattedNumber($job->max_salary) }} {{ currentCurrencyCode() }}

@else

{{ $job->custom_salary }}

@endif

{{ $job->salary_type->name }}

{{ date('j F, Y', strtotime($job->deadline)) }}
@if ($job->status == 'pending')
@csrf @method('PUT') status == 'pending' ? 'checked' : '' }}>
@endif
@csrf @method('PUT') status == 'active' ? 'checked' : '' }}>
@if ($job->status == 'active' || $job->status == 'expired')
@csrf @method('PUT') status == 'expired' ? 'checked' : '' }}>
@endif
{{ __('view_details') }} {{ __('clone') }} @if (userCan('job.update')) @endif @if (userCan('job.delete'))
@method('DELETE') @csrf
@endif
@endif @endsection @section('style') @include('map::links') @endsection @section('script') {{-- Leaflet --}} @include('map::scripts') @endsection