Member Since 1 Month Ago
4,780 experience to go until the next level!
In case you were wondering, you earn Laracasts experience when you:
Earned once you have completed your first Laracasts lesson.
Earned once you have earned your first 1000 experience points.
Earned when you have been with Laracasts for 1 year.
Earned when you have been with Laracasts for 2 years.
Earned when you have been with Laracasts for 3 years.
Earned when you have been with Laracasts for 4 years.
Earned when you have been with Laracasts for 5 years.
Earned when at least one Laracasts series has been fully completed.
Earned after your first post on the Laracasts forum.
Earned once 100 Laracasts lessons have been completed.
Earned once you receive your first "Best Reply" award on the Laracasts forum.
Earned if you are a paying Laracasts subscriber.
Earned if you have a lifetime subscription to Laracasts.
Earned if you share a link to Laracasts on social media. Please email [email protected] with your username and post URL to be awarded this badge.
Earned once you have achieved 500 forum replies.
Earned once your experience points passes 100,000.
Earned once your experience points hits 10,000.
Earned once 1000 Laracasts lessons have been completed.
Earned once your "Best Reply" award count is 100 or more.
Earned once your experience points passes 1 million.
Earned once your experience points ranks in the top 50 of all Laracasts users.
Earned once your experience points ranks in the top 10 of all Laracasts users.
Started a new Conversation Help Me. Is This Update Script Correct?
help me. Is this update script correct?
public function ajouetapedeux(Request $request) {
$request->validate([
'pratiques_coutumiere'=>'required',
'organisation_concernee'=>'required',
'mode_transmission'=>'required',
'menace_interpretation'=>'required',
'menace_transmission'=>'required',
'disponibilite_element'=>'required',
'viabilite_element'=>'required',
'mesure_sauvegarde'=>'required'
]);
$num_fiche=$request->input('num_fiche');
$autre_participant=$request->input('autre_participant');
$autres_personnes_impliquees=$request->input('autres_personnes_impliquees');
$pratiques_coutumiere=$request->input('pratiques_coutumiere');
$mode_transmission=$request->input('mode_transmission');
$organisation_concernee=$request->input('organisation_concernee');
$menace_interpretation=$request->input('menace_interpretation');
$menace_transmission=$request->input('menace_transmission');
$disponibilite_element=$request->input('disponibilite_element');
$viabilite_element=$request->input('viabilite_element');
$mesure_sauvegarde=$request->input('mesure_sauvegarde');
$query = DB::update('update pcis set autre_participant = ?,autres_personnes_impliquees=?,pratiques_coutumiere=?,mode_transmission=?,organisation_concernee=?,menace_interpretation=?,menace_transmission=?,disponibilite_element=?,viabilite_element=?,mesure_sauvegarde=? where num_fiche = ?',[$autre_participant,$autres_personnes_impliquees,$pratiques_coutumiere, $mode_transmission,$organisation_concernee,$menace_interpretation,$menace_transmission,$disponibilite_element,$viabilite_element,$mesure_sauvegarde,$num_fiche]);
}
Replied to Retrieving Variable From One Form To Another
How could I get this value into my controller to use it?
Replied to Update A Data Line In The Database From Laravel
I'm not asking for sql commands but rather the script to modify a data line for example from an application interface designed with laravel
Started a new Conversation Update A Data Line In The Database From Laravel
Please I would like to have the script to update a data line in the database from an application interface designed with laravel
Replied to Retrieving Variable From One Form To Another
Thanks Can I have an example that this query string can help me do?
Replied to Retrieving Variable From One Form To Another
Is there no other way to do this besides using session variables?
Started a new Conversation Retrieving Variable From One Form To Another
Hello . Please I would like to have the script to save in memory a variable entered in a form to be able to use it on another form . Thanks