FilamentF
Filament2y ago
daar

Create pest tests

The following code gives a 404, which I don't understand why.

it('has admission-prices page', function () {
    $response = $this->get('admission-prices');

    $response->assertStatus(200);
});


My URL is: http://localhost/emr/admission-prices

Any suggestions?
Was this page helpful?