Answers for "how to update a table based on three columns laravel"

PHP
0

how to update a table based on three columns laravel

$name=Input::get('name');
        DB::table('attendence')
            ->where('name',$name)
            ->update([
                'checkedout' =>  $this->data->checkedout,
                'type'=> $this->data->type,
            ]);
        return redirect('attendence')->with('Thank You!');
Posted by: Guest on February-06-2022

Code answers related to "how to update a table based on three columns laravel"

Browse Popular Code Answers by Language