@extends('layouts.app') @section('content') @include('includes.header') @include('includes.inner_page_title', ['page_title'=>__('Company Detail')])
@include('flash::message')
{{$company->name}}
{{$company->getIndustry('industry')}}
{{__('Member Since')}}, {{$company->created_at->format('M d, Y')}}
{{$company->location}}
@if(!Auth::user() && !Auth::guard('company')->user())
Login to View contact details
Login @else
@if(!empty($company->phone)) @endif @if(!empty($company->email)) @endif @if(!empty($company->website)) @endif
{!!$company->getSocialNetworkHtml()!!}
@endif
@if(Auth::check() && Auth::user()->isFavouriteCompany($company->slug)) {{__('Favourite Company')}} @else {{__('Add to Favourite')}} @endif {{__('Report Abuse')}} {{__('Send Message')}}

{{__('About Company')}}

{!! $company->description !!}

{{__('Job Openings')}}

{{__('Company Detail')}}

  • {{__('Is Email Verified')}}
    {{((bool)$company->verified)? 'Yes':'No'}}
  • {{__('Total Employees')}}
    {{$company->no_of_employees}}
  • {{__('Established In')}}
    {{$company->established_in}}
  • {{__('Current jobs')}}
    {{$company->countNumJobs('company_id',$company->id)}}
@include('includes.footer') @endsection @push('styles') @endpush @push('scripts') @endpush