Quick Note: Changing Testing Database in Laravel
By default, Laravel uses in-memory SQLite database to run your tests doing database operations. You can confirm this by checking phpunit.xml in the root of your Laravel project.
<!-- ... -->
<php>
<!-- ... -->
<server name="CACHE_DRIVER" valu...
erayerdin.com