Laravel query examples

Hello Friends 👋, Welcome To Infinitbility! ❤️ This article helps you write code of query in laravel, here you get examples of Insert, select, update, delete, and join query examples to use in your laravel project. Before the start article, I have shared some articles’ link may you help check out below links Laravel Model Tutorial ( How to create model in laravel ) https://infinitbility.github.io/laravel-model Laravel select only first row ( get only first match row )...

May 3, 2021 Â· 3 min Â· Infinitbility

React native net info example

Hello Friends, Welcome To Infinitbility! we need to check internet connection before call api in react native and today we are going to learn how to check internet connection and if not available then show error No Internet Connection. This article help you to manage internet connection on your react native application. here you will get code snipest to know internet available or not in user phone. React Native provide netinfo package to handle internet but it’s now move to react native netinfo package ( https://github....

May 2, 2021 Â· 2 min Â· Infinitbility

integrate Mustache nodejs example

Hello Friends, Welcome To Infinitbility! This article explain and provide example to implement Mustache template in node js. we are assuming you want send mustache template content in your mail function. Let’s start today topic integrate mustache template in nodejs with typescript Start with Installation npm install consolidate mustache --save install consolidate and mustache library to setup mustache render engine Setup mustache engine app.ts import consolidate engine import engine from "consolidate"; create private function initializeMailTemplate private initializeMailTemplate(){ // set templates folder this....

May 1, 2021 Â· 2 min Â· Infinitbility

Safemode in windos 7 and 10

Hi Friends, Welcome To Repairbility! This article explain to go in Safemode on your windows 7 and 10 machine. Let’s start today topic Safemode in windos 7 and 10 you have going safe mod because you have same driver or software problem in your computer Solution: For Windows 7 users press the power button of your computer then press the f8 button continuously and you get several options on your screen...

April 30, 2021 Â· 1 min Â· Repairbility

How to install drivers on your windows

Hi Friends, Welcome To Repairbility! This article help you to install driver on your windows machine. let’s start today topic How to install drivers on your windows driver is software that a device uses to work with your pc. Download new drivers, go to PC manufacturer’s website or device manufacturer’s website. for an external device, you need to install the driver yourself, you need to download the driver manually. If you need to download the driver from the device manufacturer, then you are required to know the device model....

April 29, 2021 Â· 2 min Â· Repairbility

Mute and Unmute functionality in mediastream react

Hello Friends 👋, Welcome To Infinitbility! ❤️ in this article, we are use RecordRTC and MediaStream to record audio. This article provide example to add mute and unmute functionality in your react web rtc application. Let’s start today topic how to add mute and unmute functionality in mediastream react let audioTrack; await navigator.mediaDevices .getUserMedia({ audio: true }) .then((audioStream) => { let track = audioStream.getAudioTracks(); if(track.length){ audioTrack = track[0]; } let finalTrack = new MediaStream(); // audioStream....

April 28, 2021 Â· 1 min Â· Infinitbility

Laravel exist and doesntExist query Example

Hello Friends 👋, Welcome To Infinitbility! ❤️ Many devs use count() method to check record exist or not in table and some are use get() method but laravel provide exist() and doesntExist() method to check record exist or not. This article provide example to use exist() and doesntExist() method in laravel let’s start today topic Laravel exist and doesntExist query Example or how to check record exist or not in laravel....

April 27, 2021 Â· 1 min Â· Infinitbility

Laravel Select First Row Only

Hello Friends 👋, Welcome To Infinitbility! ❤️ this article explain how to Select only first row or single row in laravel. laravel provide first() method to Select only single row using first() you will not required to write like this $array[0]. If you just need to retrieve a single row from a database table, you may use the DB facade’s first method. This method will return a single stdClass object:...

April 26, 2021 Â· 1 min Â· Infinitbility

Task transform dex archive with dex merger for debug failed in react native

Hello Friends 👋, Welcome To Infinitbility! ❤️ In this article, you will solve your Task :app:transformDexArchiveWithDexMergerForDebug FAILED issue in your application. If your methods + your dependencies method greater then 64k+ methods then your react native throwing DexMerger error. Follow some simple steps you absolutely solved this error. Step 1: Enable MultiDex Dir - Project/Android/app/build.gradle android { defaultConfig { ... minSdkVersion 15 targetSdkVersion 28 multiDexEnabled true // add this line } ....

April 25, 2021 Â· 1 min Â· Infinitbility

React native video example with custom control

Hello Friends 👋, Welcome To Infinitbility! ❤️ React Native video provides the functionality to play video in your react native application with native controls but not supported in iOS i.e devs search about video control library or custom control. many devs choose to a react native video player or react native video control for show controls on video but in this article, we will implement our own video controls for both platforms (android, ios)....

April 24, 2021 Â· 18 min Â· Infinitbility

how to make bootable pendrive for win 10

Hello Friends, Welcome To Repairbility! step1:you have to downloads win 10 iso file & bootable software ( WinSetupFromUSB-1-8 ) step2:you have require minimum 8 gb pendrive and instal (WinSetupFromUSB-1-8)& right click and run as administretor (WinSetupFromUSB_1-8_x64.exe) step3:selct usb disk empty 8 gb pendrive and tick auto format it with fbinst and selct 2nd option (windows7/8/10 based iso) and click on go and mack bootable pendrive susesfully Thanks for reading…

April 23, 2021 Â· 1 min Â· Repairbility

how to download free windows 10 iso file

Hello Friends, Welcome To Repairbility! windows 10 iso file downloads from Microsoft this is the safest secure way for The genuine ISO from the Microsoft website is the up-to-date iso of the Windows os. You can use a boot-able medium like a DVD to which the iso is burnt or use any USB image burning software like Rufus to make a bootable pan drive. After which you can use these medium to install yourself windows os....

April 22, 2021 Â· 1 min Â· Repairbility

Best practice to merge arrays in Javascript

Hello Friends 👋, Welcome To Infinitbility! ❤️ In this article, you will learn the Best practice to merge arrays in javascript or merge arrays without duplicate values. Let’s Start today topic Merge arrays in javascript Javascript concat function Javascript provide concat function to merge arrays let’s undertand with Merge two arrays example. let array1 = [1, 2, 3]; let array2 = [2, 3, 4]; let array3 = array1.concat(array2); console.log(array3); /* * Output * [1, 2, 3, 2, 3, 4] */ Javascript Merge without dublicate values Using JavaScript concat we know it will merge same value also but you need only unique values show or merge in third array....

April 21, 2021 Â· 1 min Â· Infinitbility

how to format all partition of hdd

Hello Friends, Welcome To Repairbility! HDD LLF Low-Level Format Tool 4.40 & HDSentinel how to Low-Level clean HDD and monitor health of your HDD and storage device warning: you have to replace the HDD when health goes to 70-80 % or when your computer shows a hanging problem WARNING: After running this low-level format tool, the whole disk surface will be erased. Data restoration is impossible after using this utility!...

April 20, 2021 Â· 1 min Â· Repairbility

how to remove your computer password

Hello Friends, Welcome To Repairbility! In this article, you will learn remove password from windows os using Lazesoft recovery software. Go Ahead, All the best. If you have forgotten your administrator password of your Windows operating system, or you do not remember the administrator’s password, download and use Lazesoft Recover My Password to gain access to your Windows account. With Lazesoft Recover My Password, you can get out of this situation without formatting and re-installing the Windows operating system (lsrshsetup....

April 19, 2021 Â· 1 min Â· Repairbility

how to run react native project in xcode

Hello Friends 👋, Welcome To Infinitbility! ❤️ this article explain run react native project using xcode and provide good practice to use xcode. Steps go to your project/ios and click on project.xcodeworkspace. ( after click project open on xcode like provided image ) select your desired simulator ( mearked on image ) Find product tab in xcode menu. first clean your build folder ( product->clean build folder ) click on run ( product->run ) Thanks For Reading…...

April 18, 2021 Â· 1 min Â· Infinitbility

how to add background mode in xcode

Hello Friends 👋, Welcome To Infinitbility! ❤️ when devs on start to use xcode then they find difficult to use xcode because lot of option. In this article, you get guidence to add background mode on your xcode project step by step. For Enable background mode first we have to add + Capability of background mode like on below example image of xcode. Steps First click on your target ( project name )....

April 17, 2021 Â· 1 min Â· Infinitbility

how to activate Microsoft Office 2010 Free

Hello Friends, Welcome To Repairbility! how you find your Microsoft Office 2010 expired 1)your msoffice showing red line on the top (product activation failed) 2)when your Microsoft Office start then it show continevas pop (Microsoft Office 2010 Activation Wizard) solution: step 1:if you have installed antivirus then first you have to off the (Antivirus) step 2:step 2: Go to the windows settings-Update&security-WindowsSecurity-Virus&threat protection-(Real-time protection ) then Off the Real-time protection setting...

April 16, 2021 Â· 1 min Â· Repairbility

how to activate windows 7 Free

Hello Friends, Welcome To Repairbility! how do you find you have to activate windows 7 1)your computer have showing pop at the starting of the computer 2)Right-click to this pc & go to the properties(windows 7 is not activated) 3)when your computer starts then your screen blackout solution: method 1 step1:if you have installed antivirus then first you have to off the (Antivirus) step2:Click on the start button go to the control panel & click on the category and select small icons-windows defender -tools-options-administrator and untick (use this program)&save...

April 15, 2021 Â· 1 min Â· Repairbility

how to activate windows 10 Free

Hello Friends, Welcome To Repairbility! how do you find your Windows 10 activate or not? your computer have showing pop Windows activation continuously Right-click to this pc & go to the properties ( Windows 10 is not activated) Go to the windows setting-Update&Security-Activation(windows is not activated) Solution: step 1: if you have installed antivirus then first you have to off the (Antivirus) step 2: Go to the windows settings-Update&security-WindowsSecurity-Virus&threat protection-(Real-time protection ) then Off the Real-time protection setting...

April 14, 2021 Â· 1 min Â· Repairbility