Road Map Details
User Information
User Name
{{ $data->users->name ?? 'N/A' }}
User Email
{{ $data->users->email ?? 'N/A' }}
Relocation Details
Country of Origin
{{ $data->country_of_origin ?? 'N/A' }}
Destination Country
{{ $data->destination_country ?? 'N/A' }}
Purpose for Relocation
{{ $data->purpose_for_relocation ?? 'N/A' }}
School and Study Permit
@php
// Decode the school_application JSON data from the database
$schoolApplication = [];
if (!empty($data->school_application)) {
$decoded = json_decode($data->school_application ?? [], true);
$schoolApplication = is_array($decoded) ? $decoded : [];
}
// Define the full checklist
$checklist = [
'Determine Eligibility',
'Choose a program of study',
'Select a designated learning institution in Canada',
'Check admission requirements',
'Prepare and gather required documents',
'Apply for admission in DLI',
'Receive offer of Admission (Conditional/Unconditional)',
'Accept offer following DLI guidelines',
];
@endphp
School Application
@if (!empty($checklist))
@foreach ($checklist as $item)
@else
Checklist Not Available
@endif
{{ $item }}
@endforeach
@php
$permit = [];
if (!empty($data->study_permit)) {
$decoded = json_decode($data->study_permit ?? [], true);
$permit = is_array($decoded) ? $decoded : [];
}
$checklist = [
'Gather required documents for study permit',
'Complete biometrics and medical examination*',
'Submit your study permit application through IRCC',
'Receive Port of Entry (POE) Letter of Introduction',
];
@endphp
Study Permit
@if (!empty($checklist))
@foreach ($checklist as $item)
@else
Checklist Not Available
@endif
{{ $item }}
@endforeach
@php
$schoolSelection = [];
if (!empty($data->application)) {
$decoded = json_decode($data->application ?? [], true);
$schoolSelection = is_array($decoded) ? $decoded : [];
}
$checklist = [
'Not All DLIs Qualify',
'Acceptance Letter Needed',
'No Free Healthcare',
'Contact the School',
'Limited Spots',
'DLI Only',
'Provincial Systems',
];
@endphp
Resource for School Selection
@if (!empty($checklist))
@foreach ($checklist as $item)
@else
Checklist Not Available
@endif
{{ $item }}
@endforeach
@php
$dli = [];
if (!empty($data->dli)) {
$decoded = json_decode($data->dli ?? [], true);
$dli = is_array($decoded) ? $decoded : [];
}
$checklist = [
'Living & Working in Canada',
'Institution Type',
'Post-Graduation Work Permit (PGWP)',
'Provincial Attestation Letter (PAL)',
'Interests & Career Goals',
];
@endphp
Choice of DLI
@if (!empty($checklist))
@foreach ($checklist as $item)
@else
Checklist Not Available
@endif
{{ $item }}
@endforeach
Work Pathway
@php
$factorsToConsider = [];
if (!empty($data->factors_to_consider)) {
$decoded = json_decode($data->factors_to_consider ?? [], true);
$factorsToConsider = is_array($decoded) ? $decoded : [];
}
$checklist = [
'Living & Working in Canada',
'Institution Type',
'Post-Graduation Work Permit (PGWP)',
'Provincial Attestation Letter (PAL)',
'Immigration Goals',
'Interests & Career Goals',
];
@endphp
Factors to Consider
@if (!empty($checklist))
@foreach ($checklist as $item)
@else
Checklist Not Available
@endif
{{ $item }}
@endforeach
Business and Visa
@php
$startupVisaBusiness = [];
if (!empty($data->startup_visa_busniess)) {
$decoded = json_decode($data->startup_visa_busniess ?? [], true);
$startupVisaBusiness = is_array($decoded) ? $decoded : [];
}
$checklist = [
'Determine eligibility',
'Pitch Business Idea',
'Gather Document',
'Pay Fees',
'Submit Application',
'Receive Approval',
];
@endphp
Startup Visa Business
@if (!empty($checklist))
@foreach ($checklist as $item)
@else
Checklist Not Available
@endif
{{ $item }}
@endforeach
@php
$factorsToConsiderBusiness = [];
if (!empty($data->factors_to_consider_business)) {
$decoded = json_decode($data->factors_to_consider_business ?? [], true);
$factorsToConsiderBusiness = is_array($decoded) ? $decoded : [];
}
$checklist = [
'Living & Working in Canada',
'Institution Type',
'Local Competition',
'Innovation in Your Business Idea',
'Job Creation Potential',
'Canada’s Business Environment',
];
@endphp
Factors to Consider (Business)
@if (!empty($checklist))
@foreach ($checklist as $item)
@else
Checklist Not Available
@endif
{{ $item }}
@endforeach
Family and Moving
@php
$factorsToConsiderFamily = [];
if (!empty($data->factors_to_consider_family)) {
$decoded = json_decode($data->factors_to_consider_family ?? [], true);
$factorsToConsiderFamily = is_array($decoded) ? $decoded : [];
}
$checklist = [
'Living & Working in Canada',
'Institution Type',
'Local Competition',
'Innovation in Your Business Idea',
'Job Creation Potential',
'Canada’s Business Environment',
];
@endphp
Factors to Consider (Family)
@if (!empty($checklist))
@foreach ($checklist as $item)
@else
Checklist Not Available
@endif
{{ $item }}
@endforeach
@php
$factorsToConsiderWhenMovingFamily = [];
if (!empty($data->factors_to_consider_when_moving_family)) {
$decoded = json_decode(
$data->factors_to_consider_when_moving_family ?? [],
true,
);
$factorsToConsiderWhenMovingFamily = is_array($decoded) ? $decoded : [];
}
$checklist = [
'Future Dependence or Skills',
'Family Relationship',
'Current Income',
];
@endphp
Factors to Consider When Moving Family
@if (!empty($checklist))
@foreach ($checklist as $item)
@else
Checklist Not Available
@endif
{{ $item }}
@endforeach
Pre departure planning
@php
$inflightComfort = [];
if (!empty($data->inflight_comfort)) {
$decoded = json_decode($data->inflight_comfort ?? [], true);
$inflightComfort = is_array($decoded) ? $decoded : [];
}
$checklist = [
'Financial Essentials',
'Shoes',
'Electronics',
'Jewelry and Accessories',
'Toiletries and Cosmetics',
'Medications',
'Cultural Attire',
'Rainy Weather',
'Everyday Clothing',
'Warm Accessories',
];
@endphp
Inflight Comfort
@if (!empty($checklist))
@foreach ($checklist as $item)
@else
Checklist Not Available
@endif
{{ $item }}
@endforeach
@php
$foodItems = [];
if (!empty($data->food_items_to_pack)) {
$decodedFoodItems = json_decode($data->food_items_to_pack ?? [], true);
$foodItems = is_array($decodedFoodItems) ? $decodedFoodItems : [];
}
$checklist = [
'Documents',
'Pens',
'Entertainment',
'Neck Pillow',
'Snacks',
'Sweater or Jacket',
];
@endphp
Food Items to Pack
@if (!empty($checklist))
@foreach ($checklist as $item)
@else
Checklist Not Available
@endif
{{ $item }}
@endforeach
@php
$essentialsFromNigeria = [];
if (!empty($data->essentials_from_nigeria)) {
$decodedEssentials = json_decode(
$data->essentials_from_nigeria ?? [],
true,
);
$essentialsFromNigeria = is_array($decodedEssentials)
? $decodedEssentials
: [];
}
$checklist = [
'Grains & Seeds: Egusi, ogbono',
'Dried Fish: Stockfish, dry fish',
'Spices: Dry pepper (suya), Cameroon pepper, crayfish',
'Snacks: Groundnuts, chinchin',
'Dehydrated Proteins: Dehydrated snails',
'Dehydrated Leaves: Uziza, scent leaf, ugu, bitterleaf',
];
@endphp
Essentials from Nigeria
@if (!empty($checklist))
@foreach ($checklist as $item)
@else
Checklist Not Available
@endif
{{ $item }}
@endforeach
Credit and Impact
@php
$creditCard = [];
if (!empty($data->why_get_acredit_card)) {
$decodedCreditCard = json_decode($data->why_get_acredit_card ?? [], true);
$creditCard = is_array($decodedCreditCard) ? $decodedCreditCard : [];
}
$checklist = [
'Earn rewards based on spending.',
'Build a credit score for future loans.',
'Qualify for mortgages, car loans, and insurance.',
];
@endphp
Why Get a Credit Card?
@if (!empty($checklist))
@foreach ($checklist as $item)
@else
Checklist Not Available
@endif
{{ $item }}
@endforeach
@php
$impactofabad = [];
if (!empty($data->impact_of_a_bad)) {
$decodedImpact = json_decode($data->impact_of_a_bad ?? [], true);
$impactofabad = is_array($decodedImpact) ? $decodedImpact : [];
}
$checklist = [
'Difficulty obtaining personal loans, mortgages, or credit cards',
'Higher interest rates when approved for loans.',
'Disqualification from certain jobs',
'Reduced access to rental properties',
];
@endphp
Impact of Bad Credit
@if (!empty($checklist))
@foreach ($checklist as $item)
@else
Checklist Not Available
@endif
{{ $item }}
@endforeach
@php
$benefitsOfGoodCredit = [];
if (!empty($data->benefits_of_a_good)) {
$decodedBenefits = json_decode($data->benefits_of_a_good ?? [], true);
$benefitsOfGoodCredit = is_array($decodedBenefits)
? $decodedBenefits
: [];
}
$checklist = [
'Easier access to loans and better terms.',
'No security deposit on utilities.',
'Easier approvals for rent and credit',
'Lower insurance rates.',
];
@endphp
Benefits of Good Credit
@if (!empty($checklist))
@foreach ($checklist as $item)
@else
Checklist Not Available
@endif
{{ $item }}
@endforeach