- Created api.php for handling authentication routes (register, login, logout) with token middleware. - Implemented task management routes using API resource controller. feat: add console routes for artisan commands - Added console.php to define an inspiring quote command. feat: add web routes for homepage - Created web.php to serve the welcome view at the root URL. chore: add .gitignore files for storage directories - Added .gitignore files in storage/app, storage/framework, and storage/logs to exclude unnecessary files from version control. test: add feature and unit tests - Created ExampleTest in Feature and Unit directories to verify basic application responses and assertions. build: add Vite configuration for Laravel and Tailwind CSS - Added vite.config.js to configure Vite with Laravel and Tailwind CSS for asset management.
43 lines
983 B
PHP
43 lines
983 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class AuthRequest 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.
|
|
*
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'name' => 'required',
|
|
'email' => 'required|email|unique:users',
|
|
'password' => 'required|min:8'
|
|
];
|
|
}
|
|
|
|
|
|
public function messages()
|
|
{
|
|
return [
|
|
'name.required' => 'Username wajib diisi!',
|
|
'email.required' => 'Email wajib diisi!',
|
|
'email.email' => 'Format Email tidak valid!',
|
|
'email.unique' => 'Email sudah terdaftar!',
|
|
'password.required' => 'Password wajib diisi!',
|
|
'password.min' => 'Password minimal 8 karakter!'
|
|
];
|
|
}
|
|
}
|