├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app ├── Filament │ └── Resources │ │ ├── AlbumResource.php │ │ ├── AlbumResource │ │ ├── Pages │ │ │ ├── CreateAlbum.php │ │ │ ├── CreateAlbumSong.php │ │ │ └── EditAlbum.php │ │ └── RelationManagers │ │ │ └── SongsRelationManager.php │ │ ├── ArtistResource.php │ │ ├── ArtistResource │ │ └── Pages │ │ │ ├── CreateArtist.php │ │ │ ├── CreateArtistAlbum.php │ │ │ ├── CreateArtistSong.php │ │ │ ├── EditArtist.php │ │ │ ├── ListArtists.php │ │ │ ├── ManageArtistAlbums.php │ │ │ └── ManageArtistSongs.php │ │ ├── SongResource.php │ │ └── SongResource │ │ └── Pages │ │ ├── CreateSong.php │ │ └── EditSong.php ├── Http │ └── Controllers │ │ └── Controller.php ├── Models │ ├── Album.php │ ├── Artist.php │ ├── Song.php │ └── User.php └── Providers │ ├── AppServiceProvider.php │ └── Filament │ └── AdminPanelProvider.php ├── artisan ├── bootstrap ├── app.php ├── cache │ └── .gitignore └── providers.php ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── cache.php ├── database.php ├── filesystems.php ├── logging.php ├── mail.php ├── queue.php ├── services.php └── session.php ├── database ├── .gitignore ├── factories │ ├── AlbumFactory.php │ ├── ArtistFactory.php │ ├── SongFactory.php │ └── UserFactory.php ├── migrations │ ├── 0001_01_01_000000_create_users_table.php │ ├── 0001_01_01_000001_create_cache_table.php │ ├── 0001_01_01_000002_create_jobs_table.php │ ├── 2024_04_25_145935_create_artists_table.php │ ├── 2024_04_25_150102_create_albums_table.php │ └── 2024_04_25_150107_create_songs_table.php └── seeders │ └── DatabaseSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ └── filament │ │ ├── filament │ │ └── app.css │ │ ├── forms │ │ └── forms.css │ │ └── support │ │ └── support.css ├── favicon.ico ├── index.php ├── js │ └── filament │ │ ├── filament │ │ ├── app.js │ │ └── echo.js │ │ ├── forms │ │ └── components │ │ │ ├── color-picker.js │ │ │ ├── date-time-picker.js │ │ │ ├── file-upload.js │ │ │ ├── key-value.js │ │ │ ├── markdown-editor.js │ │ │ ├── rich-editor.js │ │ │ ├── select.js │ │ │ ├── tags-input.js │ │ │ └── textarea.js │ │ ├── notifications │ │ └── notifications.js │ │ ├── support │ │ ├── async-alpine.js │ │ └── support.js │ │ ├── tables │ │ └── components │ │ │ └── table.js │ │ └── widgets │ │ └── components │ │ ├── chart.js │ │ └── stats-overview │ │ └── stat │ │ └── chart.js └── robots.txt ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js └── views │ └── welcome.blade.php ├── routes ├── console.php └── web.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/README.md -------------------------------------------------------------------------------- /app/Filament/Resources/AlbumResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/app/Filament/Resources/AlbumResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/AlbumResource/Pages/CreateAlbum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/app/Filament/Resources/AlbumResource/Pages/CreateAlbum.php -------------------------------------------------------------------------------- /app/Filament/Resources/AlbumResource/Pages/CreateAlbumSong.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/app/Filament/Resources/AlbumResource/Pages/CreateAlbumSong.php -------------------------------------------------------------------------------- /app/Filament/Resources/AlbumResource/Pages/EditAlbum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/app/Filament/Resources/AlbumResource/Pages/EditAlbum.php -------------------------------------------------------------------------------- /app/Filament/Resources/AlbumResource/RelationManagers/SongsRelationManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/app/Filament/Resources/AlbumResource/RelationManagers/SongsRelationManager.php -------------------------------------------------------------------------------- /app/Filament/Resources/ArtistResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/app/Filament/Resources/ArtistResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/ArtistResource/Pages/CreateArtist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/app/Filament/Resources/ArtistResource/Pages/CreateArtist.php -------------------------------------------------------------------------------- /app/Filament/Resources/ArtistResource/Pages/CreateArtistAlbum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/app/Filament/Resources/ArtistResource/Pages/CreateArtistAlbum.php -------------------------------------------------------------------------------- /app/Filament/Resources/ArtistResource/Pages/CreateArtistSong.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/app/Filament/Resources/ArtistResource/Pages/CreateArtistSong.php -------------------------------------------------------------------------------- /app/Filament/Resources/ArtistResource/Pages/EditArtist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/app/Filament/Resources/ArtistResource/Pages/EditArtist.php -------------------------------------------------------------------------------- /app/Filament/Resources/ArtistResource/Pages/ListArtists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/app/Filament/Resources/ArtistResource/Pages/ListArtists.php -------------------------------------------------------------------------------- /app/Filament/Resources/ArtistResource/Pages/ManageArtistAlbums.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/app/Filament/Resources/ArtistResource/Pages/ManageArtistAlbums.php -------------------------------------------------------------------------------- /app/Filament/Resources/ArtistResource/Pages/ManageArtistSongs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/app/Filament/Resources/ArtistResource/Pages/ManageArtistSongs.php -------------------------------------------------------------------------------- /app/Filament/Resources/SongResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/app/Filament/Resources/SongResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/SongResource/Pages/CreateSong.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/app/Filament/Resources/SongResource/Pages/CreateSong.php -------------------------------------------------------------------------------- /app/Filament/Resources/SongResource/Pages/EditSong.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/app/Filament/Resources/SongResource/Pages/EditSong.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Models/Album.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/app/Models/Album.php -------------------------------------------------------------------------------- /app/Models/Artist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/app/Models/Artist.php -------------------------------------------------------------------------------- /app/Models/Song.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/app/Models/Song.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/Filament/AdminPanelProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/app/Providers/Filament/AdminPanelProvider.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bootstrap/providers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/bootstrap/providers.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/config/session.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/AlbumFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/database/factories/AlbumFactory.php -------------------------------------------------------------------------------- /database/factories/ArtistFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/database/factories/ArtistFactory.php -------------------------------------------------------------------------------- /database/factories/SongFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/database/factories/SongFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/database/migrations/0001_01_01_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000001_create_cache_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/database/migrations/0001_01_01_000001_create_cache_table.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000002_create_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/database/migrations/0001_01_01_000002_create_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2024_04_25_145935_create_artists_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/database/migrations/2024_04_25_145935_create_artists_table.php -------------------------------------------------------------------------------- /database/migrations/2024_04_25_150102_create_albums_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/database/migrations/2024_04_25_150102_create_albums_table.php -------------------------------------------------------------------------------- /database/migrations/2024_04_25_150107_create_songs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/database/migrations/2024_04_25_150107_create_songs_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/filament/filament/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/public/css/filament/filament/app.css -------------------------------------------------------------------------------- /public/css/filament/forms/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/public/css/filament/forms/forms.css -------------------------------------------------------------------------------- /public/css/filament/support/support.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/public/css/filament/support/support.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/filament/filament/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/public/js/filament/filament/app.js -------------------------------------------------------------------------------- /public/js/filament/filament/echo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/public/js/filament/filament/echo.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/color-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/public/js/filament/forms/components/color-picker.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/date-time-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/public/js/filament/forms/components/date-time-picker.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/file-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/public/js/filament/forms/components/file-upload.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/key-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/public/js/filament/forms/components/key-value.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/markdown-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/public/js/filament/forms/components/markdown-editor.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/rich-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/public/js/filament/forms/components/rich-editor.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/public/js/filament/forms/components/select.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/tags-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/public/js/filament/forms/components/tags-input.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/public/js/filament/forms/components/textarea.js -------------------------------------------------------------------------------- /public/js/filament/notifications/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/public/js/filament/notifications/notifications.js -------------------------------------------------------------------------------- /public/js/filament/support/async-alpine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/public/js/filament/support/async-alpine.js -------------------------------------------------------------------------------- /public/js/filament/support/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/public/js/filament/support/support.js -------------------------------------------------------------------------------- /public/js/filament/tables/components/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/public/js/filament/tables/components/table.js -------------------------------------------------------------------------------- /public/js/filament/widgets/components/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/public/js/filament/widgets/components/chart.js -------------------------------------------------------------------------------- /public/js/filament/widgets/components/stats-overview/stat/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/public/js/filament/widgets/components/stats-overview/stat/chart.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/routes/web.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/GuavaCZ/filament-nested-resources-demo/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 | -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuavaCZ/filament-nested-resources-demo/HEAD/vite.config.js --------------------------------------------------------------------------------