BinLocation.php 353 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Http\Controllers\api\thirdPart\syrius\producer;
  3. use Illuminate\Support\Facades\Http;
  4. class BinLocation
  5. {
  6. public function createBinLocation()
  7. {
  8. $token = "";
  9. Http::withHeaders([
  10. 'Accept' => 'application/json',
  11. 'Authorization' => 'Bearer ' .$token,
  12. ])->post("x",[]);
  13. }
  14. }