Hi i will build referral website. So every user will have their unique link. the unique id store in User table.
example: domainname.com/referral/A12CDKDDF
so the route
Route::get('/referral/{id}', 'IndexController@referral');
but i want to make it the link more shorter like using bit.ly/ABCD or firebase ref.page.link/ABCD
i need advice which URL Shorteners api which suitable with my case? if let say currently have 1000 users and this can continue to grow up.
i read in firebase, the max request/day is 200.000/day for free plan. so its mean, i can have my short url unlimited in my table. but only 200000 click/open allow. is it my understanding correct?
thannk you for advice