PHP Classes

File: resources/lang/en/message.php

Recommend this page to a friend!
  Classes of Neeraj Saini   Laravel API Kit   resources/lang/en/message.php   Download  
File: resources/lang/en/message.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Laravel API Kit
Improve API creation using the Laravel framework
Author: By
Last change:
Date: 11 days ago
Size: 1,114 bytes
 

Contents

Class file image Download
<?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.',
];