prodV1 #2

Open
RomanGolienko wants to merge 309 commits from prodV1 into main
2 changed files with 5 additions and 20 deletions
Showing only changes of commit 8a6e1bea3d - Show all commits

View File

@ -56,7 +56,11 @@ class EntranceExaminationController extends Controller
Log::channel('app')
->info(
'CREATE вступ. испытания {entranceExamination} - user {user}',
['user' => Auth::user()->name, 'entranceExamination' => $entranceExamination->name, 'data' => $validated]
[
'user' => Auth::user()->name,
'entranceExamination' => $entranceExamination->name,
'data' => $validated
]
);
return redirect()->route('entrance_examinations.index');

View File

@ -1,19 +0,0 @@
<?php
namespace Tests\Feature;
// use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*/
public function testTheApplicationReturnsASuccessfulResponse(): void
{
$response = $this->get('/');
$response->assertStatus(200);
}
}