Wednesday, March 15, 2017

Laravel send data via request to another project

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

Advertisement