@extends('layouts.master') @section('title') @lang('translation.Employer_Details') @endsection @section('content') @component('components.breadcrumb') @slot('li_1') Admin @endslot @slot('title') Employer Details @endslot @endcomponent
Employer Details
@if(session('success'))
{{ session('success') }}
@endif
@if($employer->logo) {{ $employer->name }} Logo @else
{{ substr($employer->name, 0, 1) }}
@endif

{{ $employer->name }}

{{ $employer->tax_id }}

{{ $employer->active ? 'Active' : 'Inactive' }} @if($employer->trashed()) Deleted @endif
Contact Information

@if($employer->contact_person)

{{ $employer->contact_person }}

@endif

{{ $employer->phone }}

@if($employer->email)

{{ $employer->email }}

@endif @if($employer->website)

{{ parse_url($employer->website, PHP_URL_HOST) }}

@endif
Address

{{ $employer->address }}

Additional Details

Created: {{ $employer->created_at->format('M d, Y') }}

Last Updated: {{ $employer->updated_at->format('M d, Y') }}

Quick Actions
@if($employer->trashed())
@csrf @method('PUT')
@csrf @method('DELETE')
@else View Employees View Documents
@csrf @method('DELETE')
@endif
@if(!$employer->trashed())
Status Toggle
@csrf
active ? 'checked' : '' }} onchange="this.form.submit()">
@endif
@endsection @section('script') @endsection @section('script-bottom') @endsection