├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── Tricki │ └── Notification │ │ ├── Facade.php │ │ ├── Models │ │ ├── AbstractEloquent.php │ │ ├── Notification.php │ │ └── NotificationUser.php │ │ ├── Notification.php │ │ └── NotificationServiceProvider.php ├── config │ ├── .gitkeep │ └── config.php └── migrations │ ├── .gitkeep │ ├── 2015_01_24_124832_create_notifications_tables.php │ └── 2015_02_08_132023_make_read_at_nullable.php └── tests └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricki/laravel-notification/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricki/laravel-notification/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricki/laravel-notification/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricki/laravel-notification/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricki/laravel-notification/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricki/laravel-notification/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Tricki/Notification/Facade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricki/laravel-notification/HEAD/src/Tricki/Notification/Facade.php -------------------------------------------------------------------------------- /src/Tricki/Notification/Models/AbstractEloquent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricki/laravel-notification/HEAD/src/Tricki/Notification/Models/AbstractEloquent.php -------------------------------------------------------------------------------- /src/Tricki/Notification/Models/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricki/laravel-notification/HEAD/src/Tricki/Notification/Models/Notification.php -------------------------------------------------------------------------------- /src/Tricki/Notification/Models/NotificationUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricki/laravel-notification/HEAD/src/Tricki/Notification/Models/NotificationUser.php -------------------------------------------------------------------------------- /src/Tricki/Notification/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricki/laravel-notification/HEAD/src/Tricki/Notification/Notification.php -------------------------------------------------------------------------------- /src/Tricki/Notification/NotificationServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricki/laravel-notification/HEAD/src/Tricki/Notification/NotificationServiceProvider.php -------------------------------------------------------------------------------- /src/config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/config/config.php: -------------------------------------------------------------------------------- 1 | '' 5 | ); -------------------------------------------------------------------------------- /src/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/migrations/2015_01_24_124832_create_notifications_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricki/laravel-notification/HEAD/src/migrations/2015_01_24_124832_create_notifications_tables.php -------------------------------------------------------------------------------- /src/migrations/2015_02_08_132023_make_read_at_nullable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricki/laravel-notification/HEAD/src/migrations/2015_02_08_132023_make_read_at_nullable.php -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------