[Vuejs]-How to prepare api using laravel and vue.js

0👍

You can not use your front-end javascript code inside php controllers, there are two ways to use the data; First: send it via the request. Second: fetch the required data at the back-end side and use it there.
Also there are many alternatives to Axios like the fetch api etc.

Update#1:
example controller

use Illuminate\Http\Request;

class ExampleController extends Controller
{
    public function exampleMethod(Request $request){
    $name = $request->input('name');
    //DO sth 

    }

}

Route in api.php:

Route::get('/users', 'API\ExampleController@exampleMethod');

Leave a comment