├── .editorconfig ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json ├── database └── migrations │ └── 2019_07_15_164435_create_devices_table.php └── src ├── Device.php ├── Exceptions └── CouldNotSendNotification.php ├── Facades └── Device.php ├── FcmChannel.php ├── FcmMessage.php ├── FcmServiceProvider.php ├── HasDevices.php ├── Http └── Controllers │ └── DeviceController.php └── ManageDevices.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamcruzme/laravel-fcm/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | composer.lock -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamcruzme/laravel-fcm/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamcruzme/laravel-fcm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamcruzme/laravel-fcm/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamcruzme/laravel-fcm/HEAD/composer.json -------------------------------------------------------------------------------- /database/migrations/2019_07_15_164435_create_devices_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamcruzme/laravel-fcm/HEAD/database/migrations/2019_07_15_164435_create_devices_table.php -------------------------------------------------------------------------------- /src/Device.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamcruzme/laravel-fcm/HEAD/src/Device.php -------------------------------------------------------------------------------- /src/Exceptions/CouldNotSendNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamcruzme/laravel-fcm/HEAD/src/Exceptions/CouldNotSendNotification.php -------------------------------------------------------------------------------- /src/Facades/Device.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamcruzme/laravel-fcm/HEAD/src/Facades/Device.php -------------------------------------------------------------------------------- /src/FcmChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamcruzme/laravel-fcm/HEAD/src/FcmChannel.php -------------------------------------------------------------------------------- /src/FcmMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamcruzme/laravel-fcm/HEAD/src/FcmMessage.php -------------------------------------------------------------------------------- /src/FcmServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamcruzme/laravel-fcm/HEAD/src/FcmServiceProvider.php -------------------------------------------------------------------------------- /src/HasDevices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamcruzme/laravel-fcm/HEAD/src/HasDevices.php -------------------------------------------------------------------------------- /src/Http/Controllers/DeviceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamcruzme/laravel-fcm/HEAD/src/Http/Controllers/DeviceController.php -------------------------------------------------------------------------------- /src/ManageDevices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamcruzme/laravel-fcm/HEAD/src/ManageDevices.php --------------------------------------------------------------------------------