@extends('layouts.app') @section('title', 'Company Listing — JOBES') @section('content') Company Listing Home Company Listing Industry @foreach([ 'Information Technology' => 'Information Technology', 'Internet & Startups' => 'Internet & Startups', 'Finance & Accounting' => 'Finance & Accounting', 'Design & Creative' => 'Design & Creative', 'Human Resources' => 'Human Resources' ] as $val => $label) {{ $label }} ({{ mt_rand(1, 10) }}) @endforeach Company Size @foreach([ '10-50' => '10-50 Employees', '50-200' => '50-200 Employees', '200-500' => '200-500 Employees', '500-1000' => '500-1000 Employees', '10000+' => '10000+ Employees' ] as $val => $label) {{ $label }} ({{ mt_rand(1, 12) }}) @endforeach Location @foreach([ 'Bengaluru' => 'Bengaluru', 'Mumbai' => 'Mumbai', 'Pune' => 'Pune', 'Delhi' => 'Delhi NCR', 'Remote' => 'Remote' ] as $val => $label) {{ $label }} ({{ mt_rand(1, 15) }}) @endforeach Clear All Search Company Showing results {{ $companies->count() }} in {{ $companies->total() }} companies list Sort By(Default) Most Open Roles @forelse($companies as $company) {{ $company->name }} @if($company->is_verified) @endif {{ $company->industry ?? 'Technology' }} ● Location: {{ $company->city ?? 'Bengaluru' }}, {{ $company->state ?? 'IN' }} ● Size: {{ $company->company_size ?? '50-200' }} Employees {{ $company->jobs_count }} Open Positions Est: {{ $company->founded_year ?? '2018' }} Explore Jobs @empty 🏢 No Matching Companies Found Try clearing filters or search queries to find companies. Browse All Companies @endforelse @php $gradients = [ 'linear-gradient(135deg, #fda4af 0%, #f43f5e 100%)', // Rose 'linear-gradient(135deg, #c084fc 0%, #8b5cf6 100%)', // Purple 'linear-gradient(135deg, #fed7aa 0%, #f97316 100%)', // Orange 'linear-gradient(135deg, #99f6e4 0%, #0d9488 100%)', // Teal 'linear-gradient(135deg, #bfdbfe 0%, #2563eb 100%)', // Blue 'linear-gradient(135deg, #fed7aa 0%, #ea580c 100%)' // Warm Orange ]; @endphp @foreach($companies as $idx => $company) @if($company->is_verified) Verified @endif {{ $company->name }} {{ $company->industry ?? 'Technology' }} ● Location: {{ $company->city ?? 'Bengaluru' }}, IN ● Size: {{ $company->company_size ?? '50-200' }} ● Est. Year: {{ $company->founded_year ?? '2018' }} {{ $company->jobs_count }} Open Roles Explore Jobs @endforeach @if($companies->hasPages()) {{-- Previous Page Link --}} @if ($companies->onFirstPage()) @else @endif {{-- Pagination Elements --}} @foreach ($companies->links()->elements[0] as $page => $url) @if ($page == $companies->currentPage()) {{ sprintf("%02d", $page) }} @else {{ sprintf("%02d", $page) }} @endif @endforeach {{-- Next Page Link --}} @if ($companies->hasMorePages()) @else @endif @endif @endsection @section('scripts') @endsection @section('styles') @endsection
Showing results {{ $companies->count() }} in {{ $companies->total() }} companies list
{{ $company->industry ?? 'Technology' }}
Try clearing filters or search queries to find companies.