@extends('layouts.admin') @section('title', 'مراجعة الشركات - منصة ابدأ') @section('page-title', 'مراجعة الشركات') @section('content')

مراجعة الشركات

إدارة ومراقبة جميع الشركات في المنصة

@if(request()->filled('search') || request()->filled('status')) @endif

قائمة الشركات

إجمالي: {{ $employers->total() }} شركة
@forelse($employers as $employer) @empty @endforelse
الشركة المدير الموقع حالة التوثيق الإجراءات

{{ $employer->company_name }}

{{ $employer->industry }}

{{ $employer->user->name }}

{{ $employer->user->email }}

@if($employer->address) @else
@endif {{ $employer->location }}
@if($employer->is_verified) موثقة @else غير موثقة @endif
@if($employer->is_verified)
@csrf
@else
@csrf
@endif

لا توجد شركات مسجلة حالياً

@if($employers->hasPages())
{{ $employers->appends(request()->query())->onEachSide(1)->links() }}
@endif
@endsection