├── .DS_Store ├── LaraPushNoti ├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .idea │ ├── .gitignore │ ├── LaraPushNoti.iml │ ├── misc.xml │ ├── modules.xml │ ├── php.xml │ └── phpunit.xml ├── .styleci.yml ├── README.md ├── app │ ├── Console │ │ └── Kernel.php │ ├── Exceptions │ │ └── Handler.php │ ├── Http │ │ ├── Controllers │ │ │ └── Controller.php │ │ ├── Kernel.php │ │ └── Middleware │ │ │ ├── Authenticate.php │ │ │ ├── CheckForMaintenanceMode.php │ │ │ ├── EncryptCookies.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ ├── TrimStrings.php │ │ │ ├── TrustProxies.php │ │ │ └── VerifyCsrfToken.php │ ├── Providers │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ └── RouteServiceProvider.php │ └── User.php ├── artisan ├── bootstrap │ ├── app.php │ └── cache │ │ └── .gitignore ├── composer.json ├── composer.lock ├── config │ ├── app.php │ ├── auth.php │ ├── broadcasting.php │ ├── cache.php │ ├── cors.php │ ├── database.php │ ├── filesystems.php │ ├── hashing.php │ ├── logging.php │ ├── mail.php │ ├── queue.php │ ├── services.php │ ├── session.php │ └── view.php ├── database │ ├── .gitignore │ ├── factories │ │ └── UserFactory.php │ ├── migrations │ │ ├── 2014_10_12_000000_create_users_table.php │ │ └── 2019_08_19_000000_create_failed_jobs_table.php │ └── seeds │ │ └── DatabaseSeeder.php ├── package.json ├── phpunit.xml ├── public │ ├── .htaccess │ ├── favicon.ico │ ├── index.php │ ├── robots.txt │ └── web.config ├── resources │ ├── js │ │ ├── app.js │ │ └── bootstrap.js │ ├── lang │ │ └── en │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ ├── sass │ │ └── app.scss │ └── views │ │ └── welcome.blade.php ├── routes │ ├── api.php │ ├── channels.php │ ├── console.php │ └── web.php ├── server.php ├── storage │ ├── app │ │ ├── .gitignore │ │ └── public │ │ │ └── .gitignore │ ├── framework │ │ ├── .gitignore │ │ ├── cache │ │ │ ├── .gitignore │ │ │ └── data │ │ │ │ └── .gitignore │ │ ├── sessions │ │ │ └── .gitignore │ │ ├── testing │ │ │ └── .gitignore │ │ └── views │ │ │ └── .gitignore │ └── logs │ │ └── .gitignore ├── tests │ ├── CreatesApplication.php │ ├── Feature │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit │ │ └── ExampleTest.php └── webpack.mix.js ├── README.md └── lara_push_noti ├── .gitignore ├── .metadata ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle │ ├── google-services.json │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── lara_push_noti │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── GoogleService-Info.plist │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── lib └── main.dart ├── pubspec.lock ├── pubspec.yaml └── test └── widget_test.dart /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/.DS_Store -------------------------------------------------------------------------------- /LaraPushNoti/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/.editorconfig -------------------------------------------------------------------------------- /LaraPushNoti/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/.env.example -------------------------------------------------------------------------------- /LaraPushNoti/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/.gitattributes -------------------------------------------------------------------------------- /LaraPushNoti/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/.gitignore -------------------------------------------------------------------------------- /LaraPushNoti/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/.idea/.gitignore -------------------------------------------------------------------------------- /LaraPushNoti/.idea/LaraPushNoti.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/.idea/LaraPushNoti.iml -------------------------------------------------------------------------------- /LaraPushNoti/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/.idea/misc.xml -------------------------------------------------------------------------------- /LaraPushNoti/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/.idea/modules.xml -------------------------------------------------------------------------------- /LaraPushNoti/.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/.idea/php.xml -------------------------------------------------------------------------------- /LaraPushNoti/.idea/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/.idea/phpunit.xml -------------------------------------------------------------------------------- /LaraPushNoti/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/.styleci.yml -------------------------------------------------------------------------------- /LaraPushNoti/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/README.md -------------------------------------------------------------------------------- /LaraPushNoti/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/app/Console/Kernel.php -------------------------------------------------------------------------------- /LaraPushNoti/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /LaraPushNoti/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /LaraPushNoti/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/app/Http/Kernel.php -------------------------------------------------------------------------------- /LaraPushNoti/app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /LaraPushNoti/app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /LaraPushNoti/app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /LaraPushNoti/app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /LaraPushNoti/app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /LaraPushNoti/app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /LaraPushNoti/app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /LaraPushNoti/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /LaraPushNoti/app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /LaraPushNoti/app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /LaraPushNoti/app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /LaraPushNoti/app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /LaraPushNoti/app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/app/User.php -------------------------------------------------------------------------------- /LaraPushNoti/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/artisan -------------------------------------------------------------------------------- /LaraPushNoti/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/bootstrap/app.php -------------------------------------------------------------------------------- /LaraPushNoti/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /LaraPushNoti/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/composer.json -------------------------------------------------------------------------------- /LaraPushNoti/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/composer.lock -------------------------------------------------------------------------------- /LaraPushNoti/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/config/app.php -------------------------------------------------------------------------------- /LaraPushNoti/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/config/auth.php -------------------------------------------------------------------------------- /LaraPushNoti/config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/config/broadcasting.php -------------------------------------------------------------------------------- /LaraPushNoti/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/config/cache.php -------------------------------------------------------------------------------- /LaraPushNoti/config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/config/cors.php -------------------------------------------------------------------------------- /LaraPushNoti/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/config/database.php -------------------------------------------------------------------------------- /LaraPushNoti/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/config/filesystems.php -------------------------------------------------------------------------------- /LaraPushNoti/config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/config/hashing.php -------------------------------------------------------------------------------- /LaraPushNoti/config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/config/logging.php -------------------------------------------------------------------------------- /LaraPushNoti/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/config/mail.php -------------------------------------------------------------------------------- /LaraPushNoti/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/config/queue.php -------------------------------------------------------------------------------- /LaraPushNoti/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/config/services.php -------------------------------------------------------------------------------- /LaraPushNoti/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/config/session.php -------------------------------------------------------------------------------- /LaraPushNoti/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/config/view.php -------------------------------------------------------------------------------- /LaraPushNoti/database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/database/.gitignore -------------------------------------------------------------------------------- /LaraPushNoti/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/database/factories/UserFactory.php -------------------------------------------------------------------------------- /LaraPushNoti/database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /LaraPushNoti/database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /LaraPushNoti/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /LaraPushNoti/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/package.json -------------------------------------------------------------------------------- /LaraPushNoti/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/phpunit.xml -------------------------------------------------------------------------------- /LaraPushNoti/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/public/.htaccess -------------------------------------------------------------------------------- /LaraPushNoti/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LaraPushNoti/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/public/index.php -------------------------------------------------------------------------------- /LaraPushNoti/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /LaraPushNoti/public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/public/web.config -------------------------------------------------------------------------------- /LaraPushNoti/resources/js/app.js: -------------------------------------------------------------------------------- 1 | require('./bootstrap'); 2 | -------------------------------------------------------------------------------- /LaraPushNoti/resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/resources/js/bootstrap.js -------------------------------------------------------------------------------- /LaraPushNoti/resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/resources/lang/en/auth.php -------------------------------------------------------------------------------- /LaraPushNoti/resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /LaraPushNoti/resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /LaraPushNoti/resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/resources/lang/en/validation.php -------------------------------------------------------------------------------- /LaraPushNoti/resources/sass/app.scss: -------------------------------------------------------------------------------- 1 | // 2 | -------------------------------------------------------------------------------- /LaraPushNoti/resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /LaraPushNoti/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/routes/api.php -------------------------------------------------------------------------------- /LaraPushNoti/routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/routes/channels.php -------------------------------------------------------------------------------- /LaraPushNoti/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/routes/console.php -------------------------------------------------------------------------------- /LaraPushNoti/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/routes/web.php -------------------------------------------------------------------------------- /LaraPushNoti/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/server.php -------------------------------------------------------------------------------- /LaraPushNoti/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /LaraPushNoti/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /LaraPushNoti/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/storage/framework/.gitignore -------------------------------------------------------------------------------- /LaraPushNoti/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /LaraPushNoti/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /LaraPushNoti/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /LaraPushNoti/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /LaraPushNoti/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /LaraPushNoti/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /LaraPushNoti/tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/tests/CreatesApplication.php -------------------------------------------------------------------------------- /LaraPushNoti/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /LaraPushNoti/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/tests/TestCase.php -------------------------------------------------------------------------------- /LaraPushNoti/tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /LaraPushNoti/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/LaraPushNoti/webpack.mix.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Send-Push-Notifications-Using-Laravel -------------------------------------------------------------------------------- /lara_push_noti/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/.gitignore -------------------------------------------------------------------------------- /lara_push_noti/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/.metadata -------------------------------------------------------------------------------- /lara_push_noti/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/README.md -------------------------------------------------------------------------------- /lara_push_noti/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/android/.gitignore -------------------------------------------------------------------------------- /lara_push_noti/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/android/app/build.gradle -------------------------------------------------------------------------------- /lara_push_noti/android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/android/app/google-services.json -------------------------------------------------------------------------------- /lara_push_noti/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /lara_push_noti/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /lara_push_noti/android/app/src/main/kotlin/com/example/lara_push_noti/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/android/app/src/main/kotlin/com/example/lara_push_noti/MainActivity.kt -------------------------------------------------------------------------------- /lara_push_noti/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /lara_push_noti/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /lara_push_noti/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /lara_push_noti/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /lara_push_noti/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /lara_push_noti/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /lara_push_noti/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /lara_push_noti/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /lara_push_noti/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/android/build.gradle -------------------------------------------------------------------------------- /lara_push_noti/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/android/gradle.properties -------------------------------------------------------------------------------- /lara_push_noti/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /lara_push_noti/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/android/settings.gradle -------------------------------------------------------------------------------- /lara_push_noti/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/.gitignore -------------------------------------------------------------------------------- /lara_push_noti/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /lara_push_noti/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /lara_push_noti/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /lara_push_noti/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Podfile -------------------------------------------------------------------------------- /lara_push_noti/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Podfile.lock -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner/GoogleService-Info.plist -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/ios/Runner/Info.plist -------------------------------------------------------------------------------- /lara_push_noti/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /lara_push_noti/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/lib/main.dart -------------------------------------------------------------------------------- /lara_push_noti/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/pubspec.lock -------------------------------------------------------------------------------- /lara_push_noti/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/pubspec.yaml -------------------------------------------------------------------------------- /lara_push_noti/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/development1soft/Send-Push-Notifications-Using-Laravel/HEAD/lara_push_noti/test/widget_test.dart --------------------------------------------------------------------------------