public function render($request, $e)
{
if ($e instanceof ModelNotFoundException) {
return response()->json([
'success' => false,
'errors' => ['Record not found'],
'data' => [],
], 404);
}
return;
}