]> git.localhorst.tv Git - alttp.git/commit
add model dummies
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Wed, 9 Mar 2022 17:33:54 +0000 (18:33 +0100)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Wed, 9 Mar 2022 17:33:54 +0000 (18:33 +0100)
commit55f2d7cd6c290a0d26db177d54d20c393f890bbb
tree2e3143aed3d263be9925fd1b9da2e1660aeea4dc
parentf642f1eda2a68ad5e09b71ccdae1499bc9d31e4f
add model dummies
22 files changed:
app/Http/Controllers/ParticipantController.php [new file with mode: 0644]
app/Http/Controllers/ProtocolController.php [new file with mode: 0644]
app/Http/Controllers/ResultController.php [new file with mode: 0644]
app/Http/Controllers/RoundController.php [new file with mode: 0644]
app/Http/Controllers/TournamentController.php [new file with mode: 0644]
app/Models/Participant.php [new file with mode: 0644]
app/Models/Protocol.php [new file with mode: 0644]
app/Models/Result.php [new file with mode: 0644]
app/Models/Round.php [new file with mode: 0644]
app/Models/Tournament.php [new file with mode: 0644]
app/Models/User.php
app/Policies/ParticipantPolicy.php [new file with mode: 0644]
app/Policies/ProtocolPolicy.php [new file with mode: 0644]
app/Policies/ResultPolicy.php [new file with mode: 0644]
app/Policies/RoundPolicy.php [new file with mode: 0644]
app/Policies/TournamentPolicy.php [new file with mode: 0644]
database/migrations/2022_03_09_163037_add_user_role.php [new file with mode: 0644]
database/migrations/2022_03_09_165525_create_tournaments_table.php [new file with mode: 0644]
database/migrations/2022_03_09_165535_create_participants_table.php [new file with mode: 0644]
database/migrations/2022_03_09_165540_create_rounds_table.php [new file with mode: 0644]
database/migrations/2022_03_09_165556_create_results_table.php [new file with mode: 0644]
database/migrations/2022_03_09_170353_create_protocols_table.php [new file with mode: 0644]