| 12345678910111213141516171819 |
- <?php
- namespace App\Http\Controllers\api\thirdPart\syrius\producer;
- use Illuminate\Support\Facades\Http;
- class BinLocation
- {
- public function createBinLocation()
- {
- $token = "";
- Http::withHeaders([
- 'Accept' => 'application/json',
- 'Authorization' => 'Bearer ' .$token,
- ])->post("x",[]);
- }
- }
|