[email protected] shakyl333
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
code how to make virtual ip for project | |
Go to /etc/apache2/sites-available | |
create a file named as a host_name.conf (eg. dclub.dev.conf) | |
copy the below code inside the file | |
<VirtualHost *:80> | |
ServerAdmin [email protected] | |
ServerName server.in |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Tests\Feature; | |
use Tests\TestCase; | |
use Illuminate\Foundation\Testing\DatabaseMigrations; | |
class FooTest extends TestCase | |
{ | |
use DatabaseMigrations; | |
/** @test */ | |
public function it_${1}() |