@extends('frontend.layout.app') @section('seo_title') {{ $other_page_item->company_listing_page_title }} @endsection @section('seo_meta_description') {{ $other_page_item->company_listing_page_meta_description }} @endsection @section('main_content')

{{ $other_page_item->company_listing_page_heading }}

Company Name

Company Industry

Company Location

Company Size

Founded On

@if ($advertisement_data->company_listing_ad_status == 'Show') @endif
Search Result for Company Listing
@if (!$companies->count())
No Result Found
@else @foreach ($companies as $item) @php $order_data = \App\Models\Order::where('company_id', $item->id) ->where('currently_active', 1) ->first(); if (date('Y-m-d') > $order_data->expire_date) { continue; } @endphp

{{ $item->company_name }}

{{ $item->rCompanyIndustry->name }}
{{ $item->rCompanyLocation->name }}
@php $new_str = substr($item->description, 0, 220) . ' ...'; @endphp {!! $new_str !!}
{{ $item->r_job_count }} Open Positions
@endforeach
{{ $companies->appends($_GET)->links() }}
@endif
@endsection