Initial Laravel Base

This commit is contained in:
Deon George
2019-05-14 17:52:49 +10:00
parent 95411c05e1
commit ed7087c802
85 changed files with 13433 additions and 3 deletions

10
tests/TestCase.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
}