- 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.
40 lines
984 B
PHP
40 lines
984 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class TaskRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
$rules = [
|
|
'title' => 'required|string|max:255',
|
|
'description' => 'nullable|string',
|
|
];
|
|
|
|
// jika update, title tidak wajib diisi
|
|
if ($this->isMethod('put') || $this->isMethod('patch')) {
|
|
$rules['title'] = 'sometimes|string|max:255';
|
|
$rules['is_done'] = 'sometimes|boolean';
|
|
}
|
|
|
|
return $rules;
|
|
}
|
|
|
|
public function messages(): array
|
|
{
|
|
return [
|
|
'title.required' => 'Judul task wajib diisi!',
|
|
'title.string' => 'Judul task harus berupa teks!',
|
|
'title.max' => 'Judul task maksimal 255 karakter!',
|
|
'is_done.boolean' => 'Status task harus bernilai 0 atau 1!',
|
|
];
|
|
}
|
|
}
|