Learn how to connect a Laravel project to a Supabase Postgres database and configure user authentication seamlessly.
Ensure PHP and Composer are up to date, then scaffold your Laravel project:
composer create-project laravel/laravel example-app
Set up Laravel Breeze for user authentication:
composer require laravel/breeze --dev php artisan breeze:install
Other wise will display this:
Note to get connection string click on connect button:
DB_CONNECTION=pgsql DATABASE_URL=postgres://postgres.xxxx:password@xxxx.pooler.supabase.com:5432/postgres
Modify search_path in app/config/database.php to avoid using the public schema (default for Supabase's API):
'pgsql' => [ 'driver' => 'pgsql', 'url' => env('DATABASE_URL'), 'host' => env('DB_HOST', '127.0.0.1'), 'port' => env('DB_PORT', '5432'), 'database' => env('DB_DATABASE', 'forge'), 'username' => env('DB_USERNAME', 'forge'), 'password' => env('DB_PASSWORD', ''), 'charset' => 'utf8', 'prefix' => '', 'prefix_indexes' => true, 'search_path' => 'laravel', 'sslmode' => 'prefer', ],
Set up the required authentication tables:
php artisan migrate
Run the development server and test user registration and login:
php artisan serve
Access your app at http://127.0.0.1:8000.
That's it! Your Laravel app is now connected to Supabase, ready for development.
The above is the detailed content of Day Use Supabase with Laravel. For more information, please follow other related articles on the PHP Chinese website!