Resources/lang/en/messages.php
<?php
return [
/* Post management */
'post created' => 'Post successfully created.',
'post not found' => 'Post not found.',
'post updated' => 'Post successfully updated.',
'post deleted' => 'Post successfully deleted.',
'title is required' => 'Title is required',
'slug is required' => 'Slug is required',
'slug is unique' => 'This slug is already taken',
/* Category management */
'category created' => 'Category successfully created.',
'category not found' => 'Category not found.',
'category updated' => 'Category successfully updated.',
'category deleted' => 'Category successfully deleted.',
];