Skip to content

Commit

Permalink
Merge pull request #20 from HE-Arc/19-intermediate-evaluation-feedback
Browse files Browse the repository at this point in the history
19 intermediate evaluation feedback
  • Loading branch information
katsulon authored Nov 28, 2024
2 parents 483539f + cc5f0cc commit 374bb05
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions timeliner/app/Http/Controllers/TimelineController.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ public function create()
public function store(Request $request)
{
$request->validate([
'name' => 'required|min:1|max:25',
'description' => 'required|min:1|max:100',
'name' => 'required|max:50',
'description' => 'required|max:200',
'private' => 'required|boolean'
]);

Expand Down
2 changes: 1 addition & 1 deletion timeliner/config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
|
*/

'name' => env('APP_NAME', 'Laravel'),
'name' => env('APP_NAME', 'Timeliner'),

/*
|--------------------------------------------------------------------------
Expand Down
Binary file modified timeliner/public/favicon.ico
Binary file not shown.
Binary file added timeliner/public/images/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion timeliner/resources/views/layouts/app.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">

<title>{{ config('app.name', 'Laravel') }}</title>
<title>{{ config('app.name', 'Timeliner') }}</title>

<!-- Fonts -->
<link rel="preconnect" href="https://fonts.bunny.net">
Expand Down
4 changes: 2 additions & 2 deletions timeliner/resources/views/layouts/guest.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">

<title>{{ config('app.name', 'Laravel') }}</title>
<title>{{ config('app.name', 'Timeliner') }}</title>

<!-- Fonts -->
<link rel="preconnect" href="https://fonts.bunny.net">
Expand All @@ -17,7 +17,7 @@
<body class="font-sans text-gray-900 antialiased">
<div class="min-h-screen flex flex-col sm:justify-center items-center pt-6 sm:pt-0 bg-gray-100 dark:bg-gray-900">
<div>
<a href="/">
<a href="{{ route('home') }}">
<x-application-logo class="w-20 h-20 fill-current text-gray-500" />
</a>
</div>
Expand Down

0 comments on commit 374bb05

Please sign in to comment.