@extends('portal.layouts.app', [ 'class' => '', 'elementActive' => '' ]) @section('title','Companies') @section('css') @endsection @section('content')

Companies

@can('create company') Add Company @endcan
@foreach($data as $key=>$item) @endforeach
# Image Name Industry Location Founded Year Employer Phone Email Added By Agent Date Added Actions
{{ $key+1 }} Company Logo {{ $item->name }} {{ $item->industry ?? 'N/A' }} {{$item->country?->name}}
{{ $item->location ?? 'N/A' }}
{{ $item->year_founded ?? 'N/A' }} {{ $item->employer->user->name ?? 'N/A' }} {{ $item->phone ?? 'N/A' }} {{ $item->email ?? 'N/A' }} {{ $item->addedBy->name ?? 'N/A' }} {{ $item->agent->name ?? 'N/A' }} {{ date('d M, Y', strtotime($item->created_at)) }}
@endsection @section('script') @endsection