forked from aslan/applicant-site
fix tests and lints
This commit is contained in:
parent
7579bd2a15
commit
b70d86ce20
|
@ -18,7 +18,7 @@ class DocumentsOnlineController extends Controller
|
||||||
return view('documents-online.index', compact('documentsOnline'));
|
return view('documents-online.index', compact('documentsOnline'));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function create(DocumentsOnline $documentOnline): View|Application|Factory|\Illuminate\Contracts\Foundation\Application
|
public function create(DocumentsOnline $documentOnline): View
|
||||||
{
|
{
|
||||||
if (Auth::guest()) {
|
if (Auth::guest()) {
|
||||||
abort(403);
|
abort(403);
|
||||||
|
|
|
@ -15,5 +15,4 @@ class DocumentsOnline extends Model
|
||||||
'description',
|
'description',
|
||||||
'url'
|
'url'
|
||||||
];
|
];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
<link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" />
|
<link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" />
|
||||||
|
|
||||||
<!-- Scripts -->
|
<!-- Scripts -->
|
||||||
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
@vite(['resources/sass/app.scss', 'resources/js/app.js'])
|
||||||
</head>
|
</head>
|
||||||
<body class="font-sans antialiased">
|
<body class="font-sans antialiased">
|
||||||
<div class="min-h-screen bg-gray-100 dark:bg-gray-900">
|
<div class="min-h-screen bg-gray-100 dark:bg-gray-900">
|
||||||
|
|
Loading…
Reference in New Issue