PHP|Débutant :: Forums

Advertisement

Besoin d'aide ? N'hésitez pas, mais respectez les règles

Vous n'êtes pas identifié(e).

#1 22-05-2019 09:46:36

enzo
Membre
Inscription : 22-05-2019
Messages : 1

[LARAVEL] Comment faire un tableau dans une route

Bonjour, je commence a apprendre le dév php, et je dev une appli web ( une appli contact )

J'aimerai que dans ma route , il y ai un tableau ou il y a :

_________________________________

|        Nom                 | Prenom             |

_________________________________

|        Nom                 | Prenom             |

_________________________________

voici mon code ( PHP ):

Route::get ('contacts' ,function () {
    $variablelistecontact=(object)[];
    $variablelistecontact->contact_1='Contact 1 ( NOM )';
    $variablelistecontact->contact_2='Contact 2 ( NOM )';
    $variablelistecontact->contact_3='Contact 3 ( NOM )';
    return response()->json($variablelistecontact);
});
 

Avec mon code sa me donne :

{

    "contact_1": "Contact 1 ( NOM )",

    "contact_2": "Contact 2 ( NOM )",

    "contact_3": "Contact 3 ( NOM )"

}

Pouvez vous m'aidez SVP

Dernière modification par enzo (22-05-2019 09:47:18)

Hors ligne

Pied de page des forums