| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- return [
- /*
- |--------------------------------------------------------------------------
- | Http Language Lines
- |--------------------------------------------------------------------------
- |
- | The following language lines are used during http for various
- | messages that we need to display to the user. You are free to modify
- | these language lines according to your application's requirements.
- |
- */
- 'created' => 'Created successfully',
- 'updated' => 'Updated successfully',
- 'deleted' => 'Deleted successfully',
- 'success' => 'Success',
- 'error' => 'Error',
- 'not_found' => 'Not found',
- 'unauthorized' => 'Unauthorized',
- 'forbidden' => 'Forbidden',
- 'validation_error' => 'Validation error',
- 'internal_server_error' => 'Internal server error',
- 'bad_request' => 'Bad request',
- 'no_content' => 'No content',
- 'conflict' => 'Conflict',
- 'unprocessable_entity' => 'Unprocessable entity',
- 'too_many_requests' => 'Too many requests',
- 'service_unavailable' => 'Service unavailable',
- 'gateway_timeout' => 'Gateway timeout',
- 'not_implemented' => 'Not implemented',
- 'not_acceptable' => 'Not acceptable',
- 'not_allowed' => 'Method not allowed',
- 'not_acceptable' => 'Not acceptable',
- 'webhook_received' => 'Webhook received',
- 'unauthorized_ip' => 'Unauthorized IP address',
- 'unauthorized_token' => 'Invalid webhook token',
- ];
|