├── .editorconfig ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── package.json ├── resources └── fixtures │ ├── ayah.csv │ └── surah.csv └── src ├── Models ├── Ayah.php └── Surah.php └── QuranServiceProvider.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devtical/laravel-quran/HEAD/.editorconfig -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devtical/laravel-quran/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devtical/laravel-quran/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devtical/laravel-quran/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devtical/laravel-quran/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devtical/laravel-quran/HEAD/composer.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devtical/laravel-quran/HEAD/package.json -------------------------------------------------------------------------------- /resources/fixtures/ayah.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devtical/laravel-quran/HEAD/resources/fixtures/ayah.csv -------------------------------------------------------------------------------- /resources/fixtures/surah.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devtical/laravel-quran/HEAD/resources/fixtures/surah.csv -------------------------------------------------------------------------------- /src/Models/Ayah.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devtical/laravel-quran/HEAD/src/Models/Ayah.php -------------------------------------------------------------------------------- /src/Models/Surah.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devtical/laravel-quran/HEAD/src/Models/Surah.php -------------------------------------------------------------------------------- /src/QuranServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devtical/laravel-quran/HEAD/src/QuranServiceProvider.php --------------------------------------------------------------------------------