-
-
-
- @include('hr.menu')
-
-
-
-
-
- Saved Successfully!
-
-
-
-
Add new application
-
-
-
-
-
-
-
- @include('status', ['errors' => $errors->all()])
-
-
-
-@endsection
+@extends('layouts.app')
+@include('hr.application.excel-import')
+
+@section('content')
+
+
+
+
+ @include('hr.menu')
+
+
+
+
+
+ Saved Successfully!
+
+
+
+
Add new application
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ @include('status', ['errors' => $errors->all()])
+
+
+
+@endsection
diff --git a/tests/TestCase.php b/tests/TestCase.php
index ac34a367df..60fc29648e 100644
--- a/tests/TestCase.php
+++ b/tests/TestCase.php
@@ -11,7 +11,7 @@ abstract class TestCase extends BaseTestCase
protected function signIn($role = null)
{
- $user = create(User::class);
+ $user = User::factory()->create();
is_null($role) ?: $user->assignRole($role);
$this->be($user);