Laravel API?
So Im okay with vanilla php at making an API, its pretty simple stuff, but i cannot find anywhere after a long search around google how to send an API request TO laravel, as they're all explain how to send FROM laravel. for instance i have connected status tiny api like below
Route::get('streams/status/{stream}', 'streamController@streamStatus');
this is a really really simple starter for me for an API, all this returns is 1 or a 0 1 being connected, 0 being disconnected.
this is sat behind the api middleware.
lets say for example how would i send a request to this from a vanilla php script?
I know the curl processes so im sure if you just point me in the right way i'll wobble down the right route :)
Please or to participate in this conversation.