skip to Main Content

Vite Production Error – Mixed Content The page at 'https://example.herokuapp.com/' was loaded over HTTPS, but requested an insecure stylesheet – Laravel

currently i deploy a laravue app on heroku, and i got an error like this mixed Content: The page at 'https://example.herokuapp.com/' was loaded over HTTPS, but requested an insecure stylesheet 'http://example.herokuapp.com/build/assets/app.55a1010a.css'. This request has been blocked; the content must be…

VIEW QUESTION

How to convert more than one array to one array – Laravel

I try to scrape a currency rate from www.bi.go.id, my code like this $client = new Client(); $crawler = $client->request('GET', 'https://www.bi.go.id/id/statistik/informasi-kurs/transaksi-bi/default.aspx'); $_data = $crawler->filter('table[class="table table-striped table-no-bordered table-lg"] > tbody > tr')->each(function ($node) { $explode = explode('n', $node->text()); print_r($explode); }); my…

VIEW QUESTION
Back To Top
Search