Create pest tests
The following code gives a 404, which I don't understand why.
My URL is: http://localhost/emr/admission-prices
Any suggestions?
My URL is: http://localhost/emr/admission-prices
Any suggestions?
it('has admission-prices page', function () {
$response = $this->get('admission-prices');
$response->assertStatus(200);
});