通过Json从Android APP获取Laravel服务器中的数据

So, I'm building a Laravel Aplication for my Android APP.

I'll send a Json from Android and I need do recieve this in my laravel Aplication.

How can I manage this?

How Can I build this Route and this Controller function?

Route::get('/json', 'JsonController@json' );

So, What should I do in this "JsonController" do work with this Json

I used this route:

Route::get('jsontest', 'JsonController@jsonFunction');

and called this function and worked. Thank for Help from @NIRANJAN

   public function jsonFunction(){

        $jsonPostedData = Input::all();
        return $jsonPostedData;
    }