To connect to Firebase Realtime Database in Laravel, you can use the official Firebase PHP SDK. Here is an example of how to connect to Firebase Realtime Database in Laravel:
First, install the Firebase PHP SDK:
composer require firebase/php-jwt
composer require kreait/firebase-php
Next, you can use the following code to connect to Firebase Realtime Database:
use Kreait\Firebase\Factory;
use Kreait\Firebase\ServiceAccount;
$serviceAccount = ServiceAccount::fromJsonFile(__DIR__.'/service-account.json');
$firebase = (new Factory)
->withServiceAccount($serviceAccount)
->create();
$database = $firebase->getDatabase();
Note: Replace service-account.json
with the path to your Firebase Service Account JSON file.
Once you have connected to Firebase Realtime Database, you can perform various operations, such as reading and writing data, using the provided Firebase API.