├── .DS_Store ├── .editorconfig ├── .env.example ├── .gitignore ├── .styleci.yml ├── README.md ├── app ├── .DS_Store ├── Console │ ├── Commands │ │ └── .gitkeep │ └── Kernel.php ├── Events │ ├── Event.php │ └── ExampleEvent.php ├── Exceptions │ └── Handler.php ├── Http │ ├── .DS_Store │ ├── Controllers │ │ ├── AyahController.php │ │ ├── Controller.php │ │ ├── EditionController.php │ │ ├── HizbController.php │ │ ├── JuzController.php │ │ └── SurahController.php │ ├── Middleware │ │ ├── Authenticate.php │ │ └── ExampleMiddleware.php │ └── Resources │ │ ├── AyahResource.php │ │ ├── EditionResource.php │ │ ├── HizbResource.php │ │ ├── JuzResource.php │ │ └── SurahResource.php ├── Jobs │ ├── ExampleJob.php │ └── Job.php ├── Listeners │ └── ExampleListener.php ├── Models │ ├── Ayah.php │ ├── Edition.php │ ├── Hizb.php │ ├── Juz.php │ ├── Surah.php │ └── User.php └── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ └── EventServiceProvider.php ├── artisan ├── bootstrap └── app.php ├── composer.json ├── composer.lock ├── database ├── .DS_Store ├── factories │ └── UserFactory.php ├── migrations │ ├── .DS_Store │ ├── .gitkeep │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2017_12_07_122845_create_oauth_providers_table.php │ ├── 2018_06_06_235415_create_editions_table.php │ ├── 2018_06_07_011412_create_surahs_table.php │ ├── 2018_06_07_011644_create_ayahs_table.php │ ├── 2018_06_07_015903_create_juzs_table.php │ ├── 2018_06_07_015957_create_hizbs_table.php │ ├── 2018_06_07_095418_create_ayah_edition_table.php │ └── 2018_06_10_214239_create_media_table.php └── seeders │ ├── DatabaseSeeder.php │ └── JuzTableSeeder.php ├── phpunit.xml ├── public ├── .htaccess └── index.php ├── resources └── views │ └── .gitkeep ├── routes └── web.php ├── storage ├── .DS_Store ├── app │ └── .gitignore ├── framework │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore └── tests ├── ExampleTest.php └── TestCase.php /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/.DS_Store -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/.styleci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/README.md -------------------------------------------------------------------------------- /app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/.DS_Store -------------------------------------------------------------------------------- /app/Console/Commands/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Events/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Events/Event.php -------------------------------------------------------------------------------- /app/Events/ExampleEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Events/ExampleEvent.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Http/.DS_Store -------------------------------------------------------------------------------- /app/Http/Controllers/AyahController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Http/Controllers/AyahController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/EditionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Http/Controllers/EditionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/HizbController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Http/Controllers/HizbController.php -------------------------------------------------------------------------------- /app/Http/Controllers/JuzController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Http/Controllers/JuzController.php -------------------------------------------------------------------------------- /app/Http/Controllers/SurahController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Http/Controllers/SurahController.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/ExampleMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Http/Middleware/ExampleMiddleware.php -------------------------------------------------------------------------------- /app/Http/Resources/AyahResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Http/Resources/AyahResource.php -------------------------------------------------------------------------------- /app/Http/Resources/EditionResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Http/Resources/EditionResource.php -------------------------------------------------------------------------------- /app/Http/Resources/HizbResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Http/Resources/HizbResource.php -------------------------------------------------------------------------------- /app/Http/Resources/JuzResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Http/Resources/JuzResource.php -------------------------------------------------------------------------------- /app/Http/Resources/SurahResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Http/Resources/SurahResource.php -------------------------------------------------------------------------------- /app/Jobs/ExampleJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Jobs/ExampleJob.php -------------------------------------------------------------------------------- /app/Jobs/Job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Jobs/Job.php -------------------------------------------------------------------------------- /app/Listeners/ExampleListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Listeners/ExampleListener.php -------------------------------------------------------------------------------- /app/Models/Ayah.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Models/Ayah.php -------------------------------------------------------------------------------- /app/Models/Edition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Models/Edition.php -------------------------------------------------------------------------------- /app/Models/Hizb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Models/Hizb.php -------------------------------------------------------------------------------- /app/Models/Juz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Models/Juz.php -------------------------------------------------------------------------------- /app/Models/Surah.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Models/Surah.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/composer.lock -------------------------------------------------------------------------------- /database/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/database/.DS_Store -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/database/migrations/.DS_Store -------------------------------------------------------------------------------- /database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2017_12_07_122845_create_oauth_providers_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/database/migrations/2017_12_07_122845_create_oauth_providers_table.php -------------------------------------------------------------------------------- /database/migrations/2018_06_06_235415_create_editions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/database/migrations/2018_06_06_235415_create_editions_table.php -------------------------------------------------------------------------------- /database/migrations/2018_06_07_011412_create_surahs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/database/migrations/2018_06_07_011412_create_surahs_table.php -------------------------------------------------------------------------------- /database/migrations/2018_06_07_011644_create_ayahs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/database/migrations/2018_06_07_011644_create_ayahs_table.php -------------------------------------------------------------------------------- /database/migrations/2018_06_07_015903_create_juzs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/database/migrations/2018_06_07_015903_create_juzs_table.php -------------------------------------------------------------------------------- /database/migrations/2018_06_07_015957_create_hizbs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/database/migrations/2018_06_07_015957_create_hizbs_table.php -------------------------------------------------------------------------------- /database/migrations/2018_06_07_095418_create_ayah_edition_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/database/migrations/2018_06_07_095418_create_ayah_edition_table.php -------------------------------------------------------------------------------- /database/migrations/2018_06_10_214239_create_media_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/database/migrations/2018_06_10_214239_create_media_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/JuzTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/database/seeders/JuzTableSeeder.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/public/index.php -------------------------------------------------------------------------------- /resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/routes/web.php -------------------------------------------------------------------------------- /storage/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/storage/.DS_Store -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/tests/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/quran-lumen-api/HEAD/tests/TestCase.php --------------------------------------------------------------------------------