repo
stringlengths
7
63
file_url
stringlengths
81
284
file_path
stringlengths
5
200
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:02:33
2026-01-05 05:24:06
truncated
bool
2 classes
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/tests/Feature/VacationEntitlementTest.php
tests/Feature/VacationEntitlementTest.php
<?php namespace Tests\Feature; use Carbon\Carbon; use Tests\TestCase; class VacationEntitlementTest extends TestCase { public function testCanCreateNotExpiringVacation() { Carbon::setTestNow(Carbon::parse('2020-01-01')); } }
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/tests/Feature/InviteLocationMemberTest.php
tests/Feature/InviteLocationMemberTest.php
<?php namespace Tests\Feature; use Tests\TestCase; use App\Models\User; use Livewire\Livewire; use App\Models\Location; use App\Mail\LocationInvitation; use Illuminate\Support\Facades\Mail; use Illuminate\Foundation\Testing\RefreshDatabase; use App\Http\Livewire\Locations\LocationMemberManager; class InviteLocationM...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/tests/Feature/DeleteAbsenceTest.php
tests/Feature/DeleteAbsenceTest.php
<?php namespace Tests\Feature; use Tests\TestCase; use App\Models\User; use Livewire\Livewire; use App\Models\Location; use App\Http\Livewire\Absence\AbsenceManager; class DeleteAbsenceTest extends TestCase { /** * A basic feature test example. * * @return void */ public function test_can...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/tests/Feature/AddTimeTrackingForOtherUserTest.php
tests/Feature/AddTimeTrackingForOtherUserTest.php
<?php namespace Tests\Feature; use Tests\TestCase; use App\Models\User; use Livewire\Livewire; use App\Models\Location; use App\Http\Livewire\TimeTracking\TimeTrackingManager; class AddTimeTrackingForOtherUserTest extends TestCase { public function test_can_create_time_for_other_user() { $user = User...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/tests/Feature/AuthenticationTest.php
tests/Feature/AuthenticationTest.php
<?php namespace Tests\Feature; use Tests\TestCase; use App\Models\User; use App\Models\Location; use App\Providers\RouteServiceProvider; use Illuminate\Foundation\Testing\RefreshDatabase; class AuthenticationTest extends TestCase { use RefreshDatabase; public function test_login_screen_can_be_rendered() ...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/tests/Feature/TwoFactorAuthenticationSettingsTest.php
tests/Feature/TwoFactorAuthenticationSettingsTest.php
<?php namespace Tests\Feature; use App\Models\User; use Illuminate\Foundation\Testing\RefreshDatabase; use Laravel\Jetstream\Http\Livewire\TwoFactorAuthenticationForm; use Livewire\Livewire; use Tests\TestCase; class TwoFactorAuthenticationSettingsTest extends TestCase { use RefreshDatabase; public function...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/tests/Feature/PasswordConfirmationTest.php
tests/Feature/PasswordConfirmationTest.php
<?php namespace Tests\Feature; use Tests\TestCase; use App\Models\User; use App\Models\Location; use Laravel\Jetstream\Features; use Illuminate\Foundation\Testing\RefreshDatabase; class PasswordConfirmationTest extends TestCase { use RefreshDatabase; public function test_confirm_password_screen_can_be_rende...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/tests/Feature/ProfileInformationTest.php
tests/Feature/ProfileInformationTest.php
<?php namespace Tests\Feature; use App\Models\User; use Illuminate\Foundation\Testing\RefreshDatabase; use Laravel\Jetstream\Http\Livewire\UpdateProfileInformationForm; use Livewire\Livewire; use Tests\TestCase; class ProfileInformationTest extends TestCase { use RefreshDatabase; public function test_curren...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/tests/Feature/PasswordResetTest.php
tests/Feature/PasswordResetTest.php
<?php namespace Tests\Feature; use App\Models\User; use Illuminate\Auth\Notifications\ResetPassword; use Illuminate\Foundation\Testing\RefreshDatabase; use Illuminate\Support\Facades\Notification; use Tests\TestCase; class PasswordResetTest extends TestCase { use RefreshDatabase; public function test_reset_...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/tests/Feature/CreateLocationTest.php
tests/Feature/CreateLocationTest.php
<?php namespace Tests\Feature; use Tests\TestCase; use App\Models\User; use Livewire\Livewire; use App\Http\Livewire\Locations\LocationManager; use Illuminate\Foundation\Testing\RefreshDatabase; class CreateLocationTest extends TestCase { use RefreshDatabase; public function test_locations_can_be_created() ...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/tests/Feature/AbsenceTest.php
tests/Feature/AbsenceTest.php
<?php namespace Tests\Feature; use Carbon\Carbon; use Tests\TestCase; use App\Models\User; use Livewire\Livewire; use App\Models\Location; use App\Models\AbsenceType; use App\Contracts\AddsAbsences; use App\Contracts\ApprovesAbsence; use Illuminate\Support\Facades\Bus; use App\Contracts\AddsVacationEntitlements; use ...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/tests/Feature/DefaultRestingTimeTest.php
tests/Feature/DefaultRestingTimeTest.php
<?php namespace Tests\Feature; use Carbon\Carbon; use Tests\TestCase; use App\Models\User; use App\Models\Duration; use App\Models\Location; use App\Models\TimeTracking; use App\Actions\AddTimeTracking; use App\Formatter\DateFormatter; use App\Contracts\AddsTimeTrackings; use App\Contracts\AddsDefaultRestingTime; cl...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/tests/Feature/UpdateTimeTrackingTest.php
tests/Feature/UpdateTimeTrackingTest.php
<?php namespace Tests\Feature; use Carbon\Carbon; use Tests\TestCase; use App\Models\User; use App\Models\Location; use App\Models\TimeTracking; use App\Http\Livewire\TimeTracking\TimeTrackingManager; use Livewire\Livewire; class UpdateTimeTrackingTest extends TestCase { protected $user; public function set...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/tests/Feature/ApiTokenPermissionsTest.php
tests/Feature/ApiTokenPermissionsTest.php
<?php namespace Tests\Feature; use App\Models\User; use Illuminate\Foundation\Testing\RefreshDatabase; use Illuminate\Support\Str; use Laravel\Jetstream\Features; use Laravel\Jetstream\Http\Livewire\ApiTokenManager; use Livewire\Livewire; use Tests\TestCase; class ApiTokenPermissionsTest extends TestCase { use R...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/tests/Feature/HolidayTest.php
tests/Feature/HolidayTest.php
<?php namespace Tests\Feature; use App\Contracts\AddsPublicHoliday; use Carbon\Carbon; use Tests\TestCase; use App\Models\User; use App\Models\Account; use App\Models\Location; use App\Contracts\ImportsPublicHolidays; class HolidayTest extends TestCase { public $user; public $location; public $account; ...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/tests/Feature/ChangeTimeTrackingForOtherUserTest.php
tests/Feature/ChangeTimeTrackingForOtherUserTest.php
<?php namespace Tests\Feature; use Tests\TestCase; use App\Models\User; use Livewire\Livewire; use App\Models\Location; use App\Http\Livewire\TimeTracking\TimeTrackingManager; class ChangeTimeTrackingForOtherUserTest extends TestCase { /** * A basic feature test example. * * @return void */ ...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/tests/Feature/DeleteLocationTest.php
tests/Feature/DeleteLocationTest.php
<?php namespace Tests\Feature; use Tests\TestCase; use App\Models\User; use Livewire\Livewire; use App\Models\Location; use App\Http\Livewire\Locations\LocationManager; use Illuminate\Foundation\Testing\RefreshDatabase; class DeleteLocationTest extends TestCase { use RefreshDatabase; public function test_lo...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/tests/Feature/TimeTrackingTest.php
tests/Feature/TimeTrackingTest.php
<?php namespace Tests\Feature; use Carbon\Carbon; use Tests\TestCase; use App\Models\User; use Livewire\Livewire; use App\Models\Location; use App\Actions\AddTimeTracking; use App\Formatter\DateFormatter; use App\Http\Livewire\TimeTracking\TimeTrackingManager; class TimeTrackingTest extends TestCase { protected ...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/tests/Feature/CreateApiTokenTest.php
tests/Feature/CreateApiTokenTest.php
<?php namespace Tests\Feature; use App\Models\User; use Illuminate\Foundation\Testing\RefreshDatabase; use Laravel\Jetstream\Features; use Laravel\Jetstream\Http\Livewire\ApiTokenManager; use Livewire\Livewire; use Tests\TestCase; class CreateApiTokenTest extends TestCase { use RefreshDatabase; public funct...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/tests/Feature/UpdatePasswordTest.php
tests/Feature/UpdatePasswordTest.php
<?php namespace Tests\Feature; use App\Models\User; use Illuminate\Foundation\Testing\RefreshDatabase; use Illuminate\Support\Facades\Hash; use Laravel\Jetstream\Http\Livewire\UpdatePasswordForm; use Livewire\Livewire; use Tests\TestCase; class UpdatePasswordTest extends TestCase { use RefreshDatabase; publ...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/tests/Feature/UpdateLocationMemberRoleTest.php
tests/Feature/UpdateLocationMemberRoleTest.php
<?php namespace Tests\Feature; use Tests\TestCase; use App\Models\User; use Livewire\Livewire; use App\Models\Location; use Illuminate\Foundation\Testing\RefreshDatabase; use App\Http\Livewire\Locations\LocationMemberManager; class UpdateLocationMemberRoleTest extends TestCase { use RefreshDatabase; public ...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/tests/Feature/RegistrationTest.php
tests/Feature/RegistrationTest.php
<?php namespace Tests\Feature; use Tests\TestCase; use App\Models\User; use App\Models\Account; use App\Models\Location; use Laravel\Jetstream\Jetstream; use App\Providers\RouteServiceProvider; use Illuminate\Foundation\Testing\RefreshDatabase; class RegistrationTest extends TestCase { use RefreshDatabase; ...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/tests/Feature/EvaluationTest.php
tests/Feature/EvaluationTest.php
<?php namespace Tests\Feature; use App\Daybreak; use Carbon\Carbon; use Tests\TestCase; use App\Models\User; use App\Report\Report; use App\Models\Absence; use App\Models\Account; use App\Models\Location; use App\Models\AbsenceType; use App\Contracts\AddsAbsences; use App\Contracts\AddsVacationEntitlements; use App\C...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/tests/Feature/EmailVerificationTest.php
tests/Feature/EmailVerificationTest.php
<?php namespace Tests\Feature; use App\Models\User; use App\Providers\RouteServiceProvider; use Illuminate\Auth\Events\Verified; use Illuminate\Foundation\Testing\RefreshDatabase; use Illuminate\Support\Facades\Event; use Illuminate\Support\Facades\URL; use Laravel\Fortify\Features; use Tests\TestCase; class EmailVe...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/tests/Feature/BrowserSessionsTest.php
tests/Feature/BrowserSessionsTest.php
<?php namespace Tests\Feature; use App\Models\User; use Illuminate\Foundation\Testing\RefreshDatabase; use Laravel\Jetstream\Http\Livewire\LogoutOtherBrowserSessionsForm; use Livewire\Livewire; use Tests\TestCase; class BrowserSessionsTest extends TestCase { use RefreshDatabase; public function test_other_b...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/tests/Feature/DeleteUserAccountTest.php
tests/Feature/DeleteUserAccountTest.php
<?php namespace Tests\Feature; use App\Models\User; use Illuminate\Foundation\Testing\RefreshDatabase; use Laravel\Jetstream\Http\Livewire\DeleteUserForm; use Livewire\Livewire; use Tests\TestCase; class DeleteUserAccountTest extends TestCase { use RefreshDatabase; public function test_user_accounts_can_be_...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/tests/Feature/RemoveLocationMemberTest.php
tests/Feature/RemoveLocationMemberTest.php
<?php namespace Tests\Feature; use Tests\TestCase; use App\Models\User; use Livewire\Livewire; use App\Models\Location; use Illuminate\Foundation\Testing\RefreshDatabase; use App\Http\Livewire\Locations\LocationMemberManager; class RemoveLocationMemberTest extends TestCase { use RefreshDatabase; public func...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/tests/Feature/LeaveLocationTest.php
tests/Feature/LeaveLocationTest.php
<?php namespace Tests\Feature; use Tests\TestCase; use App\Models\User; use Livewire\Livewire; use App\Models\Location; use Illuminate\Foundation\Testing\RefreshDatabase; use App\Http\Livewire\Locations\LocationMemberManager; class LeaveLocationTest extends TestCase { use RefreshDatabase; public function te...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/routes/web.php
routes/web.php
<?php use Illuminate\Support\Facades\Route; use App\Http\Controllers\ReportController; use App\Http\Controllers\AbsenceController; use App\Http\Controllers\AccountController; use App\Http\Controllers\EditEmployeeController; use App\Http\Controllers\TimeTrackingController; use App\Http\Controllers\CurrentLocationContro...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/routes/channels.php
routes/channels.php
<?php use Illuminate\Support\Facades\Broadcast; /* |-------------------------------------------------------------------------- | Broadcast Channels |-------------------------------------------------------------------------- | | Here you may register all of the event broadcasting channels that your | application suppo...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/routes/api.php
routes/api.php
<?php use Illuminate\Http\Request; use Illuminate\Support\Facades\Route; /* |-------------------------------------------------------------------------- | API Routes |-------------------------------------------------------------------------- | | Here is where you can register API routes for your application. These | r...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/routes/console.php
routes/console.php
<?php use Illuminate\Foundation\Inspiring; use Illuminate\Support\Facades\Artisan; /* |-------------------------------------------------------------------------- | Console Routes |-------------------------------------------------------------------------- | | This file is where you may define all of your Closure based...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/public/index.php
public/index.php
<?php use Illuminate\Contracts\Http\Kernel; use Illuminate\Http\Request; define('LARAVEL_START', microtime(true)); /* |-------------------------------------------------------------------------- | Check If Application Is Under Maintenance |-------------------------------------------------------------------------- | |...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/config/app.php
config/app.php
<?php return [ /* |-------------------------------------------------------------------------- | Application Name |-------------------------------------------------------------------------- | | This value is the name of your application. This value is used when the | framework needs to plac...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/config/logging.php
config/logging.php
<?php use Monolog\Handler\NullHandler; use Monolog\Handler\StreamHandler; use Monolog\Handler\SyslogUdpHandler; return [ /* |-------------------------------------------------------------------------- | Default Log Channel |-------------------------------------------------------------------------- ...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/config/session.php
config/session.php
<?php use Illuminate\Support\Str; return [ /* |-------------------------------------------------------------------------- | Default Session Driver |-------------------------------------------------------------------------- | | This option controls the default session "driver" that will be use...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/config/queue.php
config/queue.php
<?php return [ /* |-------------------------------------------------------------------------- | Default Queue Connection Name |-------------------------------------------------------------------------- | | Laravel's queue API supports an assortment of back-ends via a single | API, giving y...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/config/debugbar.php
config/debugbar.php
<?php return [ /* |-------------------------------------------------------------------------- | Debugbar Settings |-------------------------------------------------------------------------- | | Debugbar is enabled by default, when debug is set to true in app.php. | You can override t...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/config/cache.php
config/cache.php
<?php use Illuminate\Support\Str; return [ /* |-------------------------------------------------------------------------- | Default Cache Store |-------------------------------------------------------------------------- | | This option controls the default cache connection that gets used whil...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/config/hashing.php
config/hashing.php
<?php return [ /* |-------------------------------------------------------------------------- | Default Hash Driver |-------------------------------------------------------------------------- | | This option controls the default hash driver that will be used to hash | passwords for your ap...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/config/view.php
config/view.php
<?php return [ /* |-------------------------------------------------------------------------- | View Storage Paths |-------------------------------------------------------------------------- | | Most templating systems load templates from disk. Here you may specify | an array of paths that...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/config/database.php
config/database.php
<?php use Illuminate\Support\Str; return [ /* |-------------------------------------------------------------------------- | Default Database Connection Name |-------------------------------------------------------------------------- | | Here you may specify which of the database connections b...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/config/services.php
config/services.php
<?php return [ /* |-------------------------------------------------------------------------- | Third Party Services |-------------------------------------------------------------------------- | | This file is for storing the credentials for third party services such | as Mailgun, Postmark...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/config/filesystems.php
config/filesystems.php
<?php return [ /* |-------------------------------------------------------------------------- | Default Filesystem Disk |-------------------------------------------------------------------------- | | Here you may specify the default filesystem disk that should be used | by the framework. T...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/config/mail.php
config/mail.php
<?php return [ /* |-------------------------------------------------------------------------- | Default Mailer |-------------------------------------------------------------------------- | | This option controls the default mailer that is used to send any email | messages sent by your appl...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/config/cors.php
config/cors.php
<?php return [ /* |-------------------------------------------------------------------------- | Cross-Origin Resource Sharing (CORS) Configuration |-------------------------------------------------------------------------- | | Here you may configure your settings for cross-origin resource shar...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/config/fortify.php
config/fortify.php
<?php use App\Providers\RouteServiceProvider; use Laravel\Fortify\Features; return [ /* |-------------------------------------------------------------------------- | Fortify Guard |-------------------------------------------------------------------------- | | Here you may specify which authen...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/config/jetstream.php
config/jetstream.php
<?php use Laravel\Jetstream\Features; return [ /* |-------------------------------------------------------------------------- | Jetstream Stack |-------------------------------------------------------------------------- | | This configuration value informs Jetstream which "stack" you will be ...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/config/public_holidays.php
config/public_holidays.php
<?php return [ 'base_url' => 'https://feiertage-api.de/api/', 'countries' =>[ [ 'title' => 'Badenwürtemberg', 'code' => 'BW' ], [ 'title' => 'Bayern', 'code' => 'BY' ], [ 'title' => 'Berlin', 'code' => 'BE' ...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/config/broadcasting.php
config/broadcasting.php
<?php return [ /* |-------------------------------------------------------------------------- | Default Broadcaster |-------------------------------------------------------------------------- | | This option controls the default broadcaster that will be used by the | framework when an even...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/config/auth.php
config/auth.php
<?php return [ /* |-------------------------------------------------------------------------- | Authentication Defaults |-------------------------------------------------------------------------- | | This option controls the default authentication "guard" and password | reset options for y...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/config/sanctum.php
config/sanctum.php
<?php return [ /* |-------------------------------------------------------------------------- | Stateful Domains |-------------------------------------------------------------------------- | | Requests from the following domains / hosts will receive stateful API | authentication cookies. T...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/factories/TargetHourFactory.php
database/factories/TargetHourFactory.php
<?php namespace Database\Factories; use Carbon\Carbon; use App\Models\TargetHour; use Illuminate\Database\Eloquent\Factories\Factory; class TargetHourFactory extends Factory { /** * The name of the factory's corresponding model. * * @var string */ protected $model = TargetHour::class; ...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/factories/VacationBanFactory.php
database/factories/VacationBanFactory.php
<?php namespace Database\Factories; use App\Models\VacationBan; use Illuminate\Database\Eloquent\Factories\Factory; class VacationBanFactory extends Factory { /** * The name of the factory's corresponding model. * * @var string */ protected $model = VacationBan::class; /** * Def...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/factories/LocationFactory.php
database/factories/LocationFactory.php
<?php namespace Database\Factories; use App\Models\User; use App\Models\Account; use App\Models\Location; use Illuminate\Database\Eloquent\Factories\Factory; class LocationFactory extends Factory { /** * The name of the factory's corresponding model. * * @var string */ protected $model = ...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/factories/UserFactory.php
database/factories/UserFactory.php
<?php namespace Database\Factories; use App\Models\Account; use App\Models\User; use App\Models\Location; use Illuminate\Support\Str; use Illuminate\Database\Eloquent\Factories\Factory; use LogicException; class UserFactory extends Factory { /** * The name of the factory's corresponding model. * *...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/factories/TimeTrackingFactory.php
database/factories/TimeTrackingFactory.php
<?php namespace Database\Factories; use App\Models\User; use App\Models\Location; use App\Models\TimeTracking; use Illuminate\Database\Eloquent\Factories\Factory; class TimeTrackingFactory extends Factory { /** * The name of the factory's corresponding model. * * @var string */ protected ...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/factories/AbsenceFactory.php
database/factories/AbsenceFactory.php
<?php namespace Database\Factories; use App\Models\Absence; use Illuminate\Database\Eloquent\Factories\Factory; class AbsenceFactory extends Factory { /** * The name of the factory's corresponding model. * * @var string */ protected $model = Absence::class; /** * Define the mode...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/factories/AbsenceTypeFactory.php
database/factories/AbsenceTypeFactory.php
<?php namespace Database\Factories; use App\Models\Location; use App\Models\AbsenceType; use Illuminate\Database\Eloquent\Factories\Factory; class AbsenceTypeFactory extends Factory { /** * The name of the factory's corresponding model. * * @var string */ protected $model = AbsenceType::c...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/factories/AccountFactory.php
database/factories/AccountFactory.php
<?php namespace Database\Factories; use App\Models\User; use App\Models\Account; use Illuminate\Database\Eloquent\Factories\Factory; class AccountFactory extends Factory { /** * The name of the factory's corresponding model. * * @var string */ protected $model = Account::class; /** ...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/factories/PublicHolidayFactory.php
database/factories/PublicHolidayFactory.php
<?php namespace Database\Factories; use App\Models\PublicHoliday; use Illuminate\Database\Eloquent\Factories\Factory; class PublicHolidayFactory extends Factory { /** * The name of the factory's corresponding model. * * @var string */ protected $model = PublicHoliday::class; /** ...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/migrations/2020_12_09_100216_create_vacation_entitlements_transfer_table.php
database/migrations/2020_12_09_100216_create_vacation_entitlements_transfer_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateVacationEntitlementsTransferTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::cr...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/migrations/2020_11_06_183851_create_locations_table.php
database/migrations/2020_11_06_183851_create_locations_table.php
<?php use App\Models\User; use App\Models\Account; use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateLocationsTable extends Migration { /** * Run the migrations. * * @return void */ public function up(...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/migrations/2020_11_37_091035_create_location_invitations_table.php
database/migrations/2020_11_37_091035_create_location_invitations_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateLocationInvitationsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('loc...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/migrations/2020_10_25_102336_create_sessions_table.php
database/migrations/2020_10_25_102336_create_sessions_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateSessionsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('sessions', fun...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/migrations/2020_11_12_131218_create_target_hours_table.php
database/migrations/2020_11_12_131218_create_target_hours_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateTargetHoursTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('target_hour...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/migrations/2021_01_13_083730_create_working_session_actions_table.php
database/migrations/2021_01_13_083730_create_working_session_actions_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateWorkingSessionActionsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('w...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/migrations/2021_05_14_113528_create_default_resting_time_table.php
database/migrations/2021_05_14_113528_create_default_resting_time_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateDefaultRestingTimeTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('defa...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/migrations/2020_11_28_123344_create_absence_index_table.php
database/migrations/2020_11_28_123344_create_absence_index_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateAbsenceIndexTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('absence_in...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/migrations/2014_10_12_000000_create_users_table.php
database/migrations/2014_10_12_000000_create_users_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateUsersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('users', function ...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/migrations/2014_10_12_100000_create_password_resets_table.php
database/migrations/2014_10_12_100000_create_password_resets_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreatePasswordResetsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('password...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/migrations/2021_05_14_113639_add_pause_time_to_time_tracking.php
database/migrations/2021_05_14_113639_add_pause_time_to_time_tracking.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AddPauseTimeToTimeTracking extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('time_tra...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/migrations/2020_11_27_194315_create_public_holidays_table.php
database/migrations/2020_11_27_194315_create_public_holidays_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreatePublicHolidaysTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('public_h...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/migrations/2020_11_27_090855_create_location_user_table.php
database/migrations/2020_11_27_090855_create_location_user_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateLocationUserTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('location_u...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/migrations/2020_11_28_123320_create_vacation_entitlements_table.php
database/migrations/2020_11_28_123320_create_vacation_entitlements_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateVacationEntitlementsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('va...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/migrations/2019_08_19_000000_create_failed_jobs_table.php
database/migrations/2019_08_19_000000_create_failed_jobs_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateFailedJobsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('failed_jobs'...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/migrations/2020_11_28_152309_create_pause_times_table.php
database/migrations/2020_11_28_152309_create_pause_times_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreatePauseTimesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('pause_times'...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/migrations/2020_12_06_114347_create_absence_vacation_entitlement_table.php
database/migrations/2020_12_06_114347_create_absence_vacation_entitlement_table.php
<?php use App\Models\Absence; use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateAbsenceVacationEntitlementTable extends Migration { /** * Run the migrations. * * @return void */ public function up() ...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/migrations/2020_11_06_191536_create_absence_types_table.php
database/migrations/2020_11_06_191536_create_absence_types_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateAbsenceTypesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('absence_ty...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/migrations/2021_05_14_114518_drop_manual_pause_from_time_trackings_table.php
database/migrations/2021_05_14_114518_drop_manual_pause_from_time_trackings_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class DropManualPauseFromTimeTrackingsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::tabl...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/migrations/2022_03_17_144634_add_account_admin_to_users_table.php
database/migrations/2022_03_17_144634_add_account_admin_to_users_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AddAccountAdminToUsersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('users',...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php
database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreatePersonalAccessTokensTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('pe...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/migrations/2021_01_13_061249_create_working_sessions_table.php
database/migrations/2021_01_13_061249_create_working_sessions_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateWorkingSessionsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('working...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/migrations/2021_01_01_161847_add_unique_constraint_to_public_holidays_table.php
database/migrations/2021_01_01_161847_add_unique_constraint_to_public_holidays_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AddUniqueConstraintToPublicHolidaysTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::t...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/migrations/2020_11_25_095223_create_absence_type_user_table.php
database/migrations/2020_11_25_095223_create_absence_type_user_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateAbsenceTypeUserTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('absence...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/migrations/2020_11_27_194419_create_vacation_bans_table.php
database/migrations/2020_11_27_194419_create_vacation_bans_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateVacationBansTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('vacation_b...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/migrations/2020_11_05_215502_create_accounts_table.php
database/migrations/2020_11_05_215502_create_accounts_table.php
<?php use App\Models\User; use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateAccountsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::c...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/migrations/2020_11_27_194115_create_absences_table.php
database/migrations/2020_11_27_194115_create_absences_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateAbsencesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('absences', fun...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/migrations/2014_10_12_200000_add_two_factor_columns_to_users_table.php
database/migrations/2014_10_12_200000_add_two_factor_columns_to_users_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AddTwoFactorColumnsToUsersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('use...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/migrations/2020_11_27_185238_create_time_trackings_table.php
database/migrations/2020_11_27_185238_create_time_trackings_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateTimeTrackingsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('time_trac...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/seeders/VacationBanSeeder.php
database/seeders/VacationBanSeeder.php
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; class VacationBanSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { // } }
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/seeders/AbsenceTypeSeeder.php
database/seeders/AbsenceTypeSeeder.php
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; class AbsenceTypeSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { // } }
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/seeders/TimeTrackingSeeder.php
database/seeders/TimeTrackingSeeder.php
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; class TimeTrackingSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { // } }
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/seeders/CompanySeeder.php
database/seeders/CompanySeeder.php
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; class CompanySeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { // } }
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/seeders/PublicHolidaySeeder.php
database/seeders/PublicHolidaySeeder.php
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; class PublicHolidaySeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { // } }
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/seeders/DatabaseSeeder.php
database/seeders/DatabaseSeeder.php
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; use Laravel\Jetstream\Jetstream; use Laravel\Fortify\Contracts\CreatesNewUsers; class DatabaseSeeder extends Seeder { /** * Seed the application's database. * * @return void */ public function run() { app(Create...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/seeders/AbsenceSeeder.php
database/seeders/AbsenceSeeder.php
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; class AbsenceSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { // } }
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/seeders/LocationSeeder.php
database/seeders/LocationSeeder.php
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; class LocationSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { // } }
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/database/seeders/EmployeeSeeder.php
database/seeders/EmployeeSeeder.php
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; class EmployeeSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { // } }
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false
eporsche/daybreak
https://github.com/eporsche/daybreak/blob/622d67f67470933977f13a44b19849ddb1cc0d8c/resources/lang/vendor/backup/de/notifications.php
resources/lang/vendor/backup/de/notifications.php
<?php return [ 'exception_message' => 'Fehlermeldung: :message', 'exception_trace' => 'Fehlerverfolgung: :trace', 'exception_message_title' => 'Fehlermeldung', 'exception_trace_title' => 'Fehlerverfolgung', 'backup_failed_subject' => 'Backup von :application_name konnte nicht erstellt werden', ...
php
MIT
622d67f67470933977f13a44b19849ddb1cc0d8c
2026-01-05T05:21:01.959950Z
false