@extends('backend::layouts.app') @section('content') Companies Create Export @foreach($companies as $company) @endforeach
ID Logo Name Details Job details Subscription status Active Actions
{{ $company->id }}
@if ($company->isSubscribed()) @endif {{ $company->name }}
by {{ $company->user->email ?? 'No user' }}
Cell: {{ $company->phone }}
Country: {{ $company->country }}
Updated at : {{ app_date($company->updated_at) }}
Limit jobs: {{ intval($company->job_post_limit) }}
{!! $company->getLabelSubscriptionStatus() !!} @if ($company->isSubscribed())
{{ app_date_tohuman($company->subscription->created_at->timestamp) }} @endif
Edit Show Sign in Jobs Applicants
@endsection