elmsellem/laravel-bitly

Laravel package for generating bitly short urls

v1.0.0 2022-04-17 18:33 UTC

This package is auto-updated.

Last update: 2025-06-18 01:14:15 UTC


README

A laravel package for generating Bitly short URLs.

For more information see Bitly

Download laravel-bitly using composer

composer require elmsellem/laravel-bitly

Configure Bitly credentials

php artisan vendor:publish --provider="Elmsellem\Bitly\BitlyServiceProvider"

Add this in you .env file

BITLY_ACCESS_TOKEN=your_secret_bitly_access_token

Usage

<?php

$url = app('bitly')->getShortenUrl('https://www.google.com/'); // https://bit.ly/3uOZj27

using facade:

<?php

use Bitly;

$url = Bitly::getShortenUrl('https://www.google.com/'); // https://bit.ly/3uOZj27