These learning resources primarily focus on Test Driven Development (TDD).
- There is an emphasis on learning using PHP, Laravel and PHPUnit.
- All these resources are free (at the time of writing)
| <?php | |
| namespace App\Queue; | |
| use Carbon\Carbon; | |
| use Illuminate\Console\Command; | |
| use Illuminate\Support\Facades\DB; | |
| class DatabaseQueueMonitorCommand extends Command | |
| { |
| import {computed, ref} from "vue"; | |
| import { | |
| addMonths, addYears, | |
| eachDayOfInterval, | |
| endOfISOWeek, | |
| getYear, | |
| getDate, | |
| isSameMonth, | |
| startOfISOWeek, | |
| startOfMonth, |
| <?php | |
| //Enums/ContactType.php | |
| namespace App\Enums; | |
| use App\Enums\Traits\LocalizedEnum; | |
| enum ContactType: string | |
| { | |
| use LocalizedEnum; |
| <?php | |
| namespace Tests; | |
| use Illuminate\Contracts\Console\Kernel; | |
| use Illuminate\Foundation\Testing\RefreshDatabase; | |
| use Illuminate\Foundation\Testing\RefreshDatabaseState; | |
| use Symfony\Component\Finder\Finder; | |
| /** |