This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "id": 1, | |
| "name": "Alice Müller", | |
| "email": "[email protected]", | |
| "role": "admin" | |
| }, | |
| { | |
| "id": 2, | |
| "name": "Bob Schneider", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Traits; | |
| use App\Models\Client; | |
| use App\Models\Event; | |
| use App\Models\Holiday; | |
| use App\Models\Meeting; | |
| use App\Models\MeetingType; | |
| use App\Models\Presence; |