devict / votelocal

A web app for receiving local voting information via SMS
15 stars 16 forks source link

Upgrade to Laravel 8 #126

Open imacrayon opened 4 years ago

imacrayon commented 4 years ago

The biggest change here is the addition of model factories in tests:

instead of this:

factory(User::class)->create();

now you do this:

User::factory()->create();