I have a laravel api controller where I'm getting data from a table.
public function moveData(){
$movelivesales=DB::table('st_sales_live')->get();
return $movelivesales;
}
I'm getting all the data, now how can I send this data to another project api(this api is ready) using request ? Any help please?
via Elio Chamy