Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

solved by HussainAliHussain #265

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions app/Http/Controllers/PostController.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@ class PostController extends Controller
{
public function store(Request $request)
{
$request->validate(
$request->validate([
// ... TASK: write validation here so that "title" field
// would be required and unique in the "posts" DB table
);
'title' => ['required', 'unique:posts'],
]);

// Saving the post
Post::create(['title' => $request->title]);
Expand Down
4 changes: 4 additions & 0 deletions app/Http/Controllers/ProfileController.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ public function update(Request $request)
// <input name="profile[name]" ... />
// <input name="profile[email]" ... />
// Write validation rules, so both name and email are required

'profile' => ['required', 'array'],
'profile.name' => ['required'],
'profile.email' => ['required']
]);

auth()->user()->update($request->profile ?? []);
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/UserController.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public function update(User $user, UpdateUserRequest $request)
{
// TASK: change this line to not allow is_admin field to be updated
// Update only the fields that are validated in UpdateUserRequest
$user->update($request->all());
$user->update($request->except('is_admin'));

return 'Success';
}
Expand Down
7 changes: 7 additions & 0 deletions app/Http/Requests/StoreBuildingRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,11 @@ public function rules()
'name' => 'required'
];
}

public function messages()
{
return [
'name.required' => 'Please enter the name',
];
}
}
29 changes: 29 additions & 0 deletions app/Http/Requests/StoreItemRequest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?php

namespace App\Http\Requests;

use Illuminate\Foundation\Http\FormRequest;

class StoreItemRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}

/**
* Get the validation rules that apply to the request.
*
* @return array<string, \Illuminate\Contracts\Validation\Rule|array|string>
*/
public function rules(): array
{
return [
'name' => ['required'],
'description' => ['required'],
];
}
}
28 changes: 28 additions & 0 deletions app/Rules/Uppercase.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?php

namespace App\Rules;

use Closure;
use Illuminate\Contracts\Validation\ValidationRule;

class Uppercase implements ValidationRule
{
/**
* Run the validation rule.
*
* @param \Closure(string): \Illuminate\Translation\PotentiallyTranslatedString $fail
*/
public function validate(string $attribute, mixed $value, Closure $fail): void
{
// some other rules (can applied):
// ucfirst($value) !== $value
// strtoupper($value[0]) !== $value[0]
// strtoupper(substr($value, 0, 1)) !== substr($value, 0, 1)
// $value !== Str::ucfirst($value)
// !ctype_upper(substr($value, 0, 1))

if(preg_match('/^[^A-Z].*/', $value)) {
$fail("The $attribute does not start with an uppercased letter");
}
}
}
4 changes: 4 additions & 0 deletions resources/views/products/create.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
{{-- @directive --}}
{{-- {{ $message }} --}}
{{-- @endDirective --}}

@error('name')
{{ $message }}
@enderror
<br /><br />
<button type="submit">Save</button>
</form>
8 changes: 7 additions & 1 deletion resources/views/projects/create.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,17 @@
@csrf
Title:
<br />
<input type="text" name="title" />
<input type="text" name="name" />
@error('name')
<span class="text-red">{{ $message }}</span>
@enderror
<br /><br />
Description:
<br />
<input type="text" name="description" />
@error('description')
<span class="text-red">{{ $message }}</span>
@enderror
<br /><br />
<button type="submit">Save</button>
</form>
2 changes: 1 addition & 1 deletion resources/views/teams/create.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Name:
<br />
{{-- TASK: change this field so it would contain old value after validation error --}}
<input type="text" name="name" />
<input type="text" name="name" value="{{ old('name') }}" />
<br /><br />
<button type="submit">Save</button>
</form>
Loading