Locales

French (Belgium)

French Belgian locale for Xefi Faker PHP

You need to require the locale to be able to use it

composer require --dev xefi/faker-php-locales-fr-be

Be sure to setup faker with the fr_BE locale to be able to use this:

$faker = new Xefi\Faker\Faker('fr_BE');

Address

Province

$faker->province(); // Hainaut

Region

$faker->region(); // Wallonie

City

$faker->city(); // Bruxelles

Post code

$faker->postCode(); // 5600

House Number

$faker->houseNumber(); // 257

Street Name

$faker->streetName(); // Avenue de la Gare

Street Address

$faker->streetAddress(); // 257 Avenue de la Gare

Full Address

$faker->fullAddress(); // 257 Avenue de la Gare, 5600 Bruxelles

Colors

Safe Color Name

$faker->safeColorName(); // Noir

Color Name

$faker->colorName() // BleuRoyal

Company

Company

$faker->company(); // Technobel Solutions

Company Identification Number

$faker->companyNumber(); // 0895340190

VAT number

$faker->vat(); // BE0895340190

Financial

Iban

Please see base method for details

$faker->iban(countryCode: 'BE', format: 'See code') // BE68539007547034

Person

Name

// Gender: null(both), "M" (male) or "F" (female)
$faker->name(gender: 'F') // Isabelle Dupont

Firstname

// Gender: null(both), "M" (male) or "F" (female)
$faker->firstName(gender: 'F') // Isabelle

Lastname

$faker->lastName() // Dupont

RRN (Rijksregisternummer)

This field corresponds to the Belgian "Numéro de registre national", also known as the "Belgian National Number".

// Gender: null(both), "M" (male) or "F" (female)
// Formated: "xxxx-xxxx-xx"
$faker->rrn(gender: 'M', formated: true) // 12 34 56 7890 12

Text

Words

$faker->words(words: 3); // gestion des ressources humaines

Sentences

$faker->sentences(sentences: 3); // Chaque projet nécessite une attention particulière pour garantir la réussite en Belgique...

Paragraphs

$faker->paragraphs(paragraphs: 3); // La qualité des services reste un objectif central pour les entreprises belges...

Copyright © 2025