├── .editorconfig ├── .env ├── .env.example ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── README.md ├── _ide_helper.php ├── _ide_helper_models.php ├── app ├── AlgorandProvider.php ├── Console │ └── Kernel.php ├── Domain │ └── Collectible.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── AssetController.php │ │ ├── CollectionController.php │ │ ├── Controller.php │ │ ├── ExploreController.php │ │ ├── HomeController.php │ │ └── WalletController.php │ ├── Kernel.php │ ├── Livewire │ │ ├── CreateWalletModal.php │ │ └── ImportWalletModal.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ └── Requests │ │ ├── ConnectWalletRequest.php │ │ ├── CreateAssetRequest.php │ │ └── TransactionFieldsRequest.php ├── Models │ ├── Asset.php │ └── User.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Services │ └── WalletService.php ├── Utils │ └── NoteParser.php └── View │ └── Components │ ├── AppLayout.php │ ├── CollectibleCard.php │ ├── ConnectModal.php │ ├── Modal.php │ └── Navbar.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── algorand.php ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── ipfs.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 │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2021_03_29_093630_create_assets_table.php │ └── 2021_04_01_180110_create_media_table.php └── seeders │ └── DatabaseSeeder.php ├── docker-compose.yml ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ └── app.css ├── favicon.ico ├── images │ ├── algorand.png │ ├── icon_algosigner.jpeg │ └── vacation.jpeg ├── index.php ├── js │ └── app.js ├── mix-manifest.json ├── robots.txt └── web.config ├── resources ├── css │ └── app.css ├── js │ ├── algoland.js │ ├── app.js │ ├── bootstrap.js │ ├── nav.js │ └── signer.js ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ ├── components │ ├── collectible-card.blade.php │ ├── connect-modal.blade.php │ ├── modal.blade.php │ └── navbar.blade.php │ ├── layouts │ └── app-layout.blade.php │ ├── livewire │ ├── create-wallet-modal.blade.php │ └── import-wallet-modal.blade.php │ └── pages │ ├── asa │ └── create-asset.blade.php │ ├── collection │ └── index-collection.blade.php │ ├── explore │ └── index-explore.blade.php │ ├── index.blade.php │ ├── main │ └── home.blade.php │ └── wallet │ ├── index-wallet.blade.php │ └── install-wallet.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 ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/.env -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/.styleci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/README.md -------------------------------------------------------------------------------- /_ide_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/_ide_helper.php -------------------------------------------------------------------------------- /_ide_helper_models.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/_ide_helper_models.php -------------------------------------------------------------------------------- /app/AlgorandProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/AlgorandProvider.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Domain/Collectible.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Domain/Collectible.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/AssetController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Http/Controllers/AssetController.php -------------------------------------------------------------------------------- /app/Http/Controllers/CollectionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Http/Controllers/CollectionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/ExploreController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Http/Controllers/ExploreController.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/WalletController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Http/Controllers/WalletController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Livewire/CreateWalletModal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Http/Livewire/CreateWalletModal.php -------------------------------------------------------------------------------- /app/Http/Livewire/ImportWalletModal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Http/Livewire/ImportWalletModal.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/ConnectWalletRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Http/Requests/ConnectWalletRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/CreateAssetRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Http/Requests/CreateAssetRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/TransactionFieldsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Http/Requests/TransactionFieldsRequest.php -------------------------------------------------------------------------------- /app/Models/Asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Models/Asset.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Services/WalletService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Services/WalletService.php -------------------------------------------------------------------------------- /app/Utils/NoteParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/Utils/NoteParser.php -------------------------------------------------------------------------------- /app/View/Components/AppLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/View/Components/AppLayout.php -------------------------------------------------------------------------------- /app/View/Components/CollectibleCard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/View/Components/CollectibleCard.php -------------------------------------------------------------------------------- /app/View/Components/ConnectModal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/View/Components/ConnectModal.php -------------------------------------------------------------------------------- /app/View/Components/Modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/View/Components/Modal.php -------------------------------------------------------------------------------- /app/View/Components/Navbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/app/View/Components/Navbar.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/composer.lock -------------------------------------------------------------------------------- /config/algorand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/config/algorand.php -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/ipfs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/config/ipfs.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/database/.gitignore -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/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/RootSoft/algoland/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2021_03_29_093630_create_assets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/database/migrations/2021_03_29_093630_create_assets_table.php -------------------------------------------------------------------------------- /database/migrations/2021_04_01_180110_create_media_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/database/migrations/2021_04_01_180110_create_media_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/algorand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/public/images/algorand.png -------------------------------------------------------------------------------- /public/images/icon_algosigner.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/public/images/icon_algosigner.jpeg -------------------------------------------------------------------------------- /public/images/vacation.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/public/images/vacation.jpeg -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/public/web.config -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/algoland.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/resources/js/algoland.js -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/resources/js/nav.js -------------------------------------------------------------------------------- /resources/js/signer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/resources/js/signer.js -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/views/components/collectible-card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/resources/views/components/collectible-card.blade.php -------------------------------------------------------------------------------- /resources/views/components/connect-modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/resources/views/components/connect-modal.blade.php -------------------------------------------------------------------------------- /resources/views/components/modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/resources/views/components/modal.blade.php -------------------------------------------------------------------------------- /resources/views/components/navbar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/resources/views/components/navbar.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app-layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/resources/views/layouts/app-layout.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/create-wallet-modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/resources/views/livewire/create-wallet-modal.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/import-wallet-modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/resources/views/livewire/import-wallet-modal.blade.php -------------------------------------------------------------------------------- /resources/views/pages/asa/create-asset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/resources/views/pages/asa/create-asset.blade.php -------------------------------------------------------------------------------- /resources/views/pages/collection/index-collection.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/resources/views/pages/collection/index-collection.blade.php -------------------------------------------------------------------------------- /resources/views/pages/explore/index-explore.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/resources/views/pages/explore/index-explore.blade.php -------------------------------------------------------------------------------- /resources/views/pages/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/resources/views/pages/index.blade.php -------------------------------------------------------------------------------- /resources/views/pages/main/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/resources/views/pages/main/home.blade.php -------------------------------------------------------------------------------- /resources/views/pages/wallet/index-wallet.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/resources/views/pages/wallet/index-wallet.blade.php -------------------------------------------------------------------------------- /resources/views/pages/wallet/install-wallet.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/resources/views/pages/wallet/install-wallet.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RootSoft/algoland/HEAD/webpack.mix.js --------------------------------------------------------------------------------