@extends('layouts.admin') {{ trans('home.marketing_program_requests') }} @section('content')
@if (session()->has('success'))
{{ session()->pull('success') }}
@endif
{{trans('home.job_seekers_statistics')}}

{{trans('home.registered_count')}}

{{$registered_count}}

{{trans('home.gada_count')}}

{{$gada_count}}

{{trans('home.riyadh_count')}}

{{$riyadh_count}}

{{trans('home.other_region_count')}}

{{$other_region_count}}

{{trans('home.male_count')}}

{{$male_count}}

{{trans('home.female_count')}}

{{$female_count}}

{{trans('home.university_count')}}

{{$university_count}}

{{trans('home.diploma_count')}}

{{$diploma_count}}

{{trans('home.secondary_count')}}

{{$secondary_count}}

{{trans('home.intermediate_count')}}

{{$intermediate_count}}

{{ trans('home.marketing_program_requests') }}

{{ trans('home.table_contain_all_data_shortly_you_can_view_more_details') }}

@foreach ($marketing_program_requests as $marketing_program_request) @endforeach
{{ trans('home.id') }} {{ trans('home.name') }} {{ trans('home.email') }} {{ trans('home.phone') }} {{ trans('home.location') }} {{ trans('home.age') }} {{ trans('home.gender') }} {{ trans('home.qualification') }} {{ trans('home.specialization') }} {{ trans('home.insurance_status') }} {{ trans('home.created_at') }} {{ trans('home.request_status') }}
{{ $marketing_program_request->id }} {{ $marketing_program_request->full_name }} {{ $marketing_program_request->email }} {{ $marketing_program_request->phone }} {{ trans('home.'.$marketing_program_request->location) }} {{ $marketing_program_request->age }} {{ trans('home.'.$marketing_program_request->gender) }} {{ __('home.'.$marketing_program_request->qualification) }} {{ $marketing_program_request->specialization }} {{ trans('home.'.$marketing_program_request->insurance_status) }} {{ $marketing_program_request->created_at }} {{ $marketing_program_request->admin_seen==1? __('home.seen') : __('home.not_seen') }}
@endsection @section('script')