Download the PHP package javi-solutions/url-shortener without Composer
On this page you can find all versions of the php package javi-solutions/url-shortener. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download javi-solutions/url-shortener
More information about javi-solutions/url-shortener
Files in javi-solutions/url-shortener
Package url-shortener
Short Description URL shortener package for Laravel framework
License MIT
Homepage https://github.com/javi-solutions/url-shortener
Informations about the package url-shortener
url-shortener
Easy package that brings easy url shortening functionality to laravel framework.
Structure of the package is based on two easy models for url shortening and its visits - with migrations of two main tables.
Installation
Settings
The package can be configurable trought appServiceProvider registration of class values.
Turn off routes
If you want to use the package without routes add:
to register method of your AppServiceProvider.
If you add other than Default route, use named route with name urlShortening.
Customizing route prefix
If you want to change prefix of route add:
to register method of your AppServiceProvider. Othervise the default prefix is /link/{id}
If you want to use redirect on route /{id} pass null value in.
Customizing observers
If you want to turn off default observers of visit and shortening add:
to register method of your AppServiceProvider. Default observer of shortening adds user_id to model data in creating method in case it is not set. Default observer of shortening visit adds ip and user agent to model data in creating method in case they are not set.
Seeding
If you want to seed in your application use package seeders: