@extends('backend.layouts.app') @section('title') {{ __('company_list') }} @endsection @section('content')

{{ __('company_list') }}

@if (userCan('company.create')) {{ __('create') }} @endif @if (request('keyword') || request('ev_status') || request('sort_by') || request('organization_type') || request('industry_type'))   {{ __('clear') }} @endif
{{-- Filter --}}
@include('backend.layouts.partials.message') @if (userCan('company.update')) @endif @if (userCan('company.update')) @endif @if (userCan('company.update')) @endif @if (userCan('company.update') || userCan('compnay.delete')) @endif @forelse ($companies as $company) @if (userCan('company.update')) @endif @if (userCan('company.update')) @endif @if (userCan('company.update') || userCan('compnay.delete')) @endif @if (userCan('company.update') || userCan('compnay.delete')) @endif @empty @endforelse
{{ __('company') }} {{ __('active') }} {{ __('job') }} {{ __('organization') }}/{{ __('country') }} {{ __('establishment_date') }}{{ __('account') }} {{ __('status') }}{{ __('email_verification') }}{{ __('profile') }} {{ __('status') }} {{ __('action') }}
id) }}' class="company"> Logo

{{ $company->user->name }} @if($company->is_profile_verified) @endif

{{ $company->user->email }}

{{ $company->active_jobs }} {{ __("active_jobs") }}

{{ $company->organization->name }}

{{ $company->country }}

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

{{ $company->user->status == 1 ? __('activated') : __('deactivated') }}

{{ $company->user->email_verified_at ? __('verified') : __('unverified') }}

{{ $company->is_profile_verified ? __('verified') : __('unverified') }}

@if (userCan('company.view')) {{__('view_profile')}} @endif @if (userCan('company.update')) @endif @if (userCan('company.delete'))
@method('DELETE') @csrf
@endif

{{ __('no_data_found') }}...

@if ($companies->count())
{{ $companies->links() }}
@endif
@endsection @section('style') @endsection @section('script') @endsection