Category: Uncategorized
-
laravel insert or update using query builder and get last insert id
-
How to use Laravel dump and dd() outside Laravel
-
How to use Eloquent ORM outside Laravel
Installing Eloquent Capsule In order to use Eloquent, you just need to install it via Composer into your project using following command. Now, once installed, to actually use Eloquent, you need to first create a new Capsule manager instance. Capsule aims to make configuring the library for usage outside of the Laravel framework as easy…
-
dd laravel function in php
-
Promise Async Await
-
Install OpenVPN on NAT IPv4 VPS
============================= 1) Aktifkan TUN/TAP dari panel kontrol VPS 2) Ssh ke server Anda dan jalankan perintah berikut # yum -y perbarui sertifikat-ca# wget git.io/vpn –no-check-certificate -O openvpn-install.sh; bash openvpn-install.sh 3) Dapatkan perangkat lunak klien OpenVPN. Untuk Windows, unduh perangkat lunak klien dari openvpn.net/index.php/download.html 4) Salin ~/client.ovpn ke folder konfigurasi openvpn Anda 5) Hubungkan ke server…
-
MySQL Trick max and min GROUP BY
-
Form Js Fetch
-
Read Svelte dist File in php
-
Web Components with Svelte
Svelte is a great framework for building applications, but did you know you can create custom elements and web components with it? In this post, we’ll learn how to create a Svelte component, export it as a custom element, and use it. We’ll also learn about limitations when doing it. 🔗Developing Let’s start a new…