<?php
return [
'created_success' => 'Resource created successfully.',
'deleted_success' => 'Resource deleted successfully.',
'not_found' => 'The requested resource was not found.',
'bad_request' => 'The request could not be understood or was missing required parameters.',
'unauthorized' => 'You do not have permission to access this resource.',
'conflict' => 'There was a conflict with the request.',
'token_expired' => "Your session has expired or the CSRF token is missing. Please refresh the page and try again.",
'unprocessable_entity' => 'The request was well-formed but was unable to be processed due to semantic errors.',
'unauthenticated' => 'Authentication is required and has failed or has not yet been provided.',
'something_went_wrong' => 'Oops! Something went wrong. Please refresh the page or contact support if the problem persists.',
'model_not_found' => ":model with ID :id not found in the system.",
'request_processing_error' => 'There was an error processing your request.',
'method_not_found' => 'The requested method does not exist.',
];
|