- array/string Helpers: Laravel Convert old array and string helpers into their modern class-based methods.

-  Use Laravel Carbon: Laravel provides an Illuminate\Support\Carbon class which wraps the underlying Carbon class. By using this class, you gain access to some additional testing methods and create separation between your code and underlying dependencies.
This commit is contained in:
Arno Kaimbacher 2022-08-12 07:53:27 +00:00
parent 50ceeb193b
commit 7d1406ee5c
16 changed files with 18 additions and 17 deletions

View file

@ -2,7 +2,7 @@
namespace Database\Seeders;
use Carbon\Carbon;
use Illuminate\Support\Carbon;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;